From 41e6ce625725391b0fc32b2926bdf720c63f650c Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Tue, 12 Jun 2018 12:22:37 +0200 Subject: [PATCH] Bump version, add changelog --- CHANGELOG.md | 6 +++++- RELEASE.md | 1 + setup.py | 2 +- toot/__init__.py | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5628ce..1df1a40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)** diff --git a/RELEASE.md b/RELEASE.md index 8e9abac..5767ebc 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -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 diff --git a/setup.py b/setup.py index 4b0eedb..79e3d64 100644 --- a/setup.py +++ b/setup.py @@ -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', diff --git a/toot/__init__.py b/toot/__init__.py index 68c86fd..d8941ba 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -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'])