Bump version

This commit is contained in:
Ivan Habunek 2018-06-27 16:33:00 +02:00
parent cf1217cc26
commit 5871916f8e
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95
3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
Changelog Changelog
--------- ---------
**0.19.0 (TBA)** **0.19.0 (2018-06-27)**
* Add support for replying to a toot (#6) * Add support for replying to a toot (#6)
* Add `toot delete` command for deleting a toot (#54) * Add `toot delete` command for deleting a toot (#54)

View File

@ -11,7 +11,7 @@ Contains an experimental curses application for reading the timeline.
setup( setup(
name='toot', name='toot',
version='0.18.0', version='0.19.0',
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.18.0' __version__ = '0.19.0'
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'])