File tree Expand file tree Collapse file tree 5 files changed +24
-2
lines changed Expand file tree Collapse file tree 5 files changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,13 @@ Changelog
3
3
4
4
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
5
5
6
+ ** 0.42.0 (2024-03-09)**
7
+
8
+ * TUI: Add ` toot tui --always-show-sensitive ` option (thanks Lexi Winter)
9
+ * TUI: Document missing shortcuts (thanks Denis Laxalde)
10
+ * TUI: Use rounded boxes for nicer visuals (thanks Dan Schwarz)
11
+ * TUI: Don't break if edited_at status field does not exist
12
+
6
13
** 0.41.1 (2024-01-02)**
7
14
8
15
* Fix a crash in settings parsing code
Original file line number Diff line number Diff line change
1
+ 0.42.0 :
2
+ date : 2024-03-09
3
+ changes :
4
+ - " TUI: Add `toot tui --always-show-sensitive` option (thanks Lexi Winter)"
5
+ - " TUI: Document missing shortcuts (thanks Denis Laxalde)"
6
+ - " TUI: Use rounded boxes for nicer visuals (thanks Dan Schwarz)"
7
+ - " TUI: Don't break if edited_at status field does not exist"
8
+
1
9
0.41.1 :
2
10
date : 2024-01-02
3
11
changes :
Original file line number Diff line number Diff line change @@ -3,6 +3,13 @@ Changelog
3
3
4
4
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
5
5
6
+ ** 0.42.0 (2024-03-09)**
7
+
8
+ * TUI: Add ` toot tui --always-show-sensitive ` option (thanks Lexi Winter)
9
+ * TUI: Document missing shortcuts (thanks Denis Laxalde)
10
+ * TUI: Use rounded boxes for nicer visuals (thanks Dan Schwarz)
11
+ * TUI: Don't break if edited_at status field does not exist
12
+
6
13
** 0.41.1 (2024-01-02)**
7
14
8
15
* Fix a crash in settings parsing code
Original file line number Diff line number Diff line change 12
12
13
13
setup (
14
14
name = 'toot' ,
15
- version = '0.41.1 ' ,
15
+ version = '0.42.0 ' ,
16
16
description = 'Mastodon CLI client' ,
17
17
long_description = long_description .strip (),
18
18
author = 'Ivan Habunek' ,
Original file line number Diff line number Diff line change 4
4
from os .path import join , expanduser
5
5
from typing import NamedTuple
6
6
7
- __version__ = '0.41.1 '
7
+ __version__ = '0.42.0 '
8
8
9
9
10
10
class App (NamedTuple ):
You can’t perform that action at this time.
0 commit comments