Bump version, add changelog

This commit is contained in:
Ivan Habunek 2018-06-12 12:22:37 +02:00
parent 7445c16947
commit 41e6ce6257
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95
4 changed files with 8 additions and 3 deletions

View File

@ -1,10 +1,14 @@
Changelog
---------
**0.18.0 (TBA)**
**0.18.0 (2018-06-12)**
* Add support for public, tag and list timelines in `toot timeline` (#52)
* Add `--sensitive` and `--spoiler-text` options to `toot post` (#63)
* Curses app improvements:
* Respect sensitive content, require keypress to show
* Add help modal (press h)
* Misc rendering improvements
**0.17.1 (2018-01-15)**

View File

@ -2,6 +2,7 @@ Release instructions
====================
* Update the version number in `setup.py`
* Update the version number in `toot/__init__.py`
* Update the `CHANGELOG.md` with the release notes & date
* Tag a release
* Push master & tag to GitHub

View File

@ -11,7 +11,7 @@ Contains an experimental curses application for reading the timeline.
setup(
name='toot',
version='0.17.1',
version='0.18.0',
description='Mastodon CLI client',
long_description=long_description.strip(),
author='Ivan Habunek',

View File

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