Bump version

This commit is contained in:
Ivan Habunek 2019-09-04 08:39:18 +02:00
parent e310482cb6
commit 7309e5bb53
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95
5 changed files with 14 additions and 2 deletions

View File

@ -3,6 +3,10 @@ Changelog
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
**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

View File

@ -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

View File

@ -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:

View File

@ -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',

View File

@ -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'])