File tree 5 files changed +26
-2
lines changed
5 files changed +26
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,14 @@ Changelog
3
3
4
4
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
5
5
6
+ ** 0.41.0 (2024-01-02)**
7
+
8
+ * Honour user's default visibility set in Mastodon preferences instead of always
9
+ defaulting to public visibility (thanks Lexi Winter)
10
+ * TUI: Add editing toots (thanks Lexi Winter)
11
+ * TUI: Fix a bug which made pallette config in settings not work
12
+ * TUI: Show edit datetime in status detail (thanks Lexi Winter)
13
+
6
14
** 0.40.2 (2023-12-28)**
7
15
8
16
* Reinstate ` toot post --using ` option.
Original file line number Diff line number Diff line change
1
+ 0.41.0 :
2
+ date : 2024-01-02
3
+ changes :
4
+ - " Honour user's default visibility set in Mastodon preferences instead of always defaulting to public visibility (thanks Lexi Winter)"
5
+ - " TUI: Add editing toots (thanks Lexi Winter)"
6
+ - " TUI: Fix a bug which made pallette config in settings not work"
7
+ - " TUI: Show edit datetime in status detail (thanks Lexi Winter)"
8
+
1
9
0.40.2 :
2
10
date : 2023-12-28
3
11
changes :
Original file line number Diff line number Diff line change @@ -3,6 +3,14 @@ Changelog
3
3
4
4
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
5
5
6
+ ** 0.41.0 (2024-01-02)**
7
+
8
+ * Honour user's default visibility set in Mastodon preferences instead of always
9
+ defaulting to public visibility (thanks Lexi Winter)
10
+ * TUI: Add editing toots (thanks Lexi Winter)
11
+ * TUI: Fix a bug which made pallette config in settings not work
12
+ * TUI: Show edit datetime in status detail (thanks Lexi Winter)
13
+
6
14
** 0.40.2 (2023-12-28)**
7
15
8
16
* Reinstate ` toot post --using ` option.
Original file line number Diff line number Diff line change 12
12
13
13
setup (
14
14
name = 'toot' ,
15
- version = '0.40.2 ' ,
15
+ version = '0.41.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.40.2 '
7
+ __version__ = '0.41.0 '
8
8
9
9
10
10
class App (NamedTuple ):
You can’t perform that action at this time.
0 commit comments