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.--> <!-- 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)** **0.23.0 (2019-09-03)**
* Add `toot tui`, new and improved TUI implemented written with the help of the * Add `toot tui`, new and improved TUI implemented written with the help of the

View File

@ -19,3 +19,6 @@ coverage:
clean : clean :
find . -name "*pyc" | xargs rm -rf $1 find . -name "*pyc" | xargs rm -rf $1
rm -rf build dist MANIFEST htmlcov deb_dist toot*.tar.gz 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: 0.23.0:
date: 2019-09-03 date: 2019-09-03
changes: changes:

View File

@ -12,7 +12,7 @@ and blocking accounts and other actions.
setup( setup(
name='toot', name='toot',
version='0.23.0', version='0.23.1',
description='Mastodon CLI client', description='Mastodon CLI client',
long_description=long_description.strip(), long_description=long_description.strip(),
author='Ivan Habunek', author='Ivan Habunek',

View File

@ -2,7 +2,7 @@
from collections import namedtuple from collections import namedtuple
__version__ = '0.23.0' __version__ = '0.23.1'
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
User = namedtuple('User', ['instance', 'username', 'access_token']) User = namedtuple('User', ['instance', 'username', 'access_token'])