From bb625da257c7a898420ec3e9745f3be2792ef03c Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Wed, 28 Jun 2023 12:41:47 +0200 Subject: [PATCH] Bump version, add changelog --- CHANGELOG.md | 6 ++++++ changelog.yaml | 8 ++++++-- docs/changelog.md | 6 ++++++ setup.py | 2 +- toot/__init__.py | 2 +- 5 files changed, 20 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d5fad39..8b00c98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,15 @@ Changelog **0.37.0 (TBA)** +* **BREAKING:** Require Python 3.7+ * Add `timeline --account` option to show the account timeline (thanks Dan Schwarz) +* Add `toot status` command to show a single status * TUI: Add personal timeline (thanks Dan Schwarz) +* TUI: Highlight followed accounts in status details (thanks Dan Schwarz) +* TUI: Restructured goto menu (thanks Dan Schwarz) +* TUI: Fix boosting boosted statuses (thanks Dan Schwarz) +* TUI: Add support for list timelines (thanks Dan Schwarz) **0.36.0 (2023-03-09)** diff --git a/changelog.yaml b/changelog.yaml index bba179c..d3c0a02 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,10 +1,14 @@ 0.37.0: - date: "TBA" + date: 2023-06-28 changes: - "**BREAKING:** Require Python 3.7+" - "Add `timeline --account` option to show the account timeline (thanks Dan Schwarz)" - - "Add `toot status` command to show a single status + - "Add `toot status` command to show a single status" - "TUI: Add personal timeline (thanks Dan Schwarz)" + - "TUI: Highlight followed accounts in status details (thanks Dan Schwarz)" + - "TUI: Restructured goto menu (thanks Dan Schwarz)" + - "TUI: Fix boosting boosted statuses (thanks Dan Schwarz)" + - "TUI: Add support for list timelines (thanks Dan Schwarz)" 0.36.0: date: 2023-03-09 diff --git a/docs/changelog.md b/docs/changelog.md index d5fad39..8b00c98 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -5,9 +5,15 @@ Changelog **0.37.0 (TBA)** +* **BREAKING:** Require Python 3.7+ * Add `timeline --account` option to show the account timeline (thanks Dan Schwarz) +* Add `toot status` command to show a single status * TUI: Add personal timeline (thanks Dan Schwarz) +* TUI: Highlight followed accounts in status details (thanks Dan Schwarz) +* TUI: Restructured goto menu (thanks Dan Schwarz) +* TUI: Fix boosting boosted statuses (thanks Dan Schwarz) +* TUI: Add support for list timelines (thanks Dan Schwarz) **0.36.0 (2023-03-09)** diff --git a/setup.py b/setup.py index a7b5c51..8ffd88a 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.36.0', + version='0.37.0', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index 24be0af..739ff78 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -1,6 +1,6 @@ from collections import namedtuple -__version__ = '0.36.0' +__version__ = '0.37.0' App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) User = namedtuple('User', ['instance', 'username', 'access_token'])