diff --git a/CHANGELOG.md b/CHANGELOG.md index bdbf0f7..f0851c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ Changelog +**0.30.1 (2022-11-30)** + +* Remove usage of depreacted `text_url` status field. Fixes posting media + without text. + **0.30.0 (2022-11-29)** * Display polls in `timeline` (thanks Daniel Schwarz) diff --git a/changelog.yaml b/changelog.yaml index 58b8a13..dccea45 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,3 +1,8 @@ +0.30.1: + date: 2022-11-30 + changes: + - "Remove usage of depreacted `text_url` status field. Fixes posting media without text." + 0.30.0: date: 2022-11-29 changes: diff --git a/setup.py b/setup.py index 6787f20..1ad1bfc 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.30.0', + version='0.30.1', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index ae41864..46a58d0 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -2,7 +2,7 @@ from collections import namedtuple -__version__ = '0.30.0' +__version__ = '0.30.1' App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) User = namedtuple('User', ['instance', 'username', 'access_token'])