diff --git a/CHANGELOG.md b/CHANGELOG.md index 285f8d2..af56c46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ Changelog +**0.23.1 (2019-09-04)** + +* Fix a date parsing bug in Python versions <3.7 (#114) + **0.23.0 (2019-09-03)** * Add `toot tui`, new and improved TUI implemented written with the help of the diff --git a/Makefile b/Makefile index 40924ce..ca57b61 100644 --- a/Makefile +++ b/Makefile @@ -19,3 +19,6 @@ coverage: clean : find . -name "*pyc" | xargs rm -rf $1 rm -rf build dist MANIFEST htmlcov deb_dist toot*.tar.gz + +changelog: + ./scripts/generate_changelog > CHANGELOG.md diff --git a/changelog.yaml b/changelog.yaml index 87adc4e..e765495 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,4 +1,9 @@ +0.23.1: + date: 2019-09-04 + changes: + - "Fix a date parsing bug in Python versions <3.7 (#114)" + 0.23.0: date: 2019-09-03 changes: diff --git a/setup.py b/setup.py index 0f23456..8e4cad3 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.23.0', + version='0.23.1', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index 012a678..c347e62 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -2,7 +2,7 @@ from collections import namedtuple -__version__ = '0.23.0' +__version__ = '0.23.1' App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) User = namedtuple('User', ['instance', 'username', 'access_token'])