diff --git a/CHANGELOG.md b/CHANGELOG.md index d87c0a6..8e103e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ Changelog +**0.34.1 (2023-02-20)** + +* TUI: Fix bug where TUI would break on older Mastodon instances (#309) + **0.34.0 (2023-02-03)** * Fix Python version detection which would fail in some cases (thanks K) diff --git a/changelog.yaml b/changelog.yaml index bbfe927..f3cb73d 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,3 +1,8 @@ +0.34.1: + date: 2023-02-20 + changes: + - "TUI: Fix bug where TUI would break on older Mastodon instances (#309)" + 0.34.0: date: 2023-02-03 changes: diff --git a/setup.py b/setup.py index d35c27f..e1fc429 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.34.0', + version='0.34.1', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index b7716e5..dcbeb30 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -1,6 +1,6 @@ from collections import namedtuple -__version__ = '0.34.0' +__version__ = '0.34.1' App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) User = namedtuple('User', ['instance', 'username', 'access_token'])