Bump version, add changelog

pull/70/head 0.18.0
Ivan Habunek 2018-06-12 12:22:37 +02:00
rodzic 7445c16947
commit 41e6ce6257
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: CDBD63C43A30BB95
4 zmienionych plików z 8 dodań i 3 usunięć

Wyświetl plik

@ -1,10 +1,14 @@
Changelog Changelog
--------- ---------
**0.18.0 (TBA)** **0.18.0 (2018-06-12)**
* Add support for public, tag and list timelines in `toot timeline` (#52) * Add support for public, tag and list timelines in `toot timeline` (#52)
* Add `--sensitive` and `--spoiler-text` options to `toot post` (#63) * 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)** **0.17.1 (2018-01-15)**

Wyświetl plik

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

Wyświetl plik

@ -11,7 +11,7 @@ Contains an experimental curses application for reading the timeline.
setup( setup(
name='toot', name='toot',
version='0.17.1', version='0.18.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',

Wyświetl plik

@ -2,7 +2,7 @@
from collections import namedtuple from collections import namedtuple
__version__ = '0.17.1' __version__ = '0.18.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'])