diff --git a/CHANGELOG.md b/CHANGELOG.md index 973e948..a1431a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ Changelog +**0.25.0 (2020-01-21)** + +* Show character count when composing (#121) +* Include changelog and license in sourceballs (#133) +* Fix searching by hashtag which include the '#' (#134) +* Upgrade search to v2 (#135) +* Fix compatibility with Python < 3.6 (don't use fstrings) + **0.24.0 (2019-09-18)** * On Windows store config files under %APPDATA% diff --git a/changelog.yaml b/changelog.yaml index aaffa1d..8fc38dd 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,3 +1,11 @@ +0.25.0: + date: 2020-01-21 + changes: + - "Show character count when composing (#121)" + - "Include changelog and license in sourceballs (#133)" + - "Fix searching by hashtag which include the '#' (#134)" + - "Upgrade search to v2 (#135)" + - "Fix compatibility with Python < 3.6 (don't use fstrings)" 0.24.0: date: 2019-09-18 diff --git a/setup.py b/setup.py index f906755..b156c4f 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.24.0', + version='0.25.0', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index 8b2944d..1ade876 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -2,7 +2,7 @@ from collections import namedtuple -__version__ = '0.24.0' +__version__ = '0.25.0' App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) User = namedtuple('User', ['instance', 'username', 'access_token'])