diff --git a/CHANGELOG.md b/CHANGELOG.md index 141e04b..a171f25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,27 @@ Changelog +**0.33.0 (2023-01-02)** + +* Add CONTRIBUTING.md containing a contribution guide +* Add `env` command which prints local env to include in issues +* Add TOOT_POST_VISIBILITY environment to control default post visibility + (thanks Lim Ding Wen) +* Add `tags_followed`, `tags_follow`, and `tags_unfollow` commands (thanks + Daniel Schwarz) +* Add `tags_bookmarks` command (thanks Giuseppe Bilotta) +* TUI: Show an error if attemptint to boost a private status (thanks Lim Ding + Wen) +* TUI: Hide polls, cards and media attachments for sensitive posts (thanks + Daniel Schwarz) +* TUI: Add bookmarking and bookmark timeline (thanks Daniel Schwarz) +* TUI: Show status visiblity (thanks Lim Ding Wen) +* TUI: Reply to original account instead of boosting account (thanks Lim Ding + Wen) +* TUI: Refresh screen after exiting browser, required for text browsers (thanks + Daniel Schwarz) +* TUI: Highlight followed tags (thanks Daniel Schwarz) + **0.32.1 (2022-12-12)** * Fix packaging issue, missing toot.utils module diff --git a/changelog.yaml b/changelog.yaml index e26d5ba..91de2cf 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,3 +1,19 @@ +0.33.0: + date: 2023-01-02 + changes: + - "Add CONTRIBUTING.md containing a contribution guide" + - "Add `env` command which prints local env to include in issues" + - "Add TOOT_POST_VISIBILITY environment to control default post visibility (thanks Lim Ding Wen)" + - "Add `tags_followed`, `tags_follow`, and `tags_unfollow` commands (thanks Daniel Schwarz)" + - "Add `tags_bookmarks` command (thanks Giuseppe Bilotta)" + - "TUI: Show an error if attemptint to boost a private status (thanks Lim Ding Wen)" + - "TUI: Hide polls, cards and media attachments for sensitive posts (thanks Daniel Schwarz)" + - "TUI: Add bookmarking and bookmark timeline (thanks Daniel Schwarz)" + - "TUI: Show status visiblity (thanks Lim Ding Wen)" + - "TUI: Reply to original account instead of boosting account (thanks Lim Ding Wen)" + - "TUI: Refresh screen after exiting browser, required for text browsers (thanks Daniel Schwarz)" + - "TUI: Highlight followed tags (thanks Daniel Schwarz)" + 0.32.1: date: 2022-12-12 changes: diff --git a/setup.py b/setup.py index ea4bc8b..4d95344 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.32.1', + version='0.33.0', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index daa953b..d58dfa4 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -1,6 +1,6 @@ from collections import namedtuple -__version__ = '0.32.1' +__version__ = '0.33.0' App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) User = namedtuple('User', ['instance', 'username', 'access_token'])