From bc6e43376a964bfa9db3f6633c411e533541a8ed Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Wed, 18 Sep 2019 21:57:55 +0200 Subject: [PATCH] Bump version, add changelog --- CHANGELOG.md | 8 ++++++++ changelog.yaml | 6 ++++-- setup.py | 2 +- toot/__init__.py | 2 +- 4 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af56c46..973e948 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ Changelog +**0.24.0 (2019-09-18)** + +* On Windows store config files under %APPDATA% +* CLI: Don't use ANSI colors if not supported by terminal or when not in a tty +* TUI: Implement deleting own status messages +* TUI: Improve rendering of reblogged statuses (thanks @dlax) +* TUI: Set urwid encoding to UTF-8 (thanks @bearzk) + **0.23.1 (2019-09-04)** * Fix a date parsing bug in Python versions <3.7 (#114) diff --git a/changelog.yaml b/changelog.yaml index eb1328f..aaffa1d 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,10 +1,12 @@ 0.24.0: - date: TBA + date: 2019-09-18 changes: + - "On Windows store config files under %APPDATA%" - "CLI: Don't use ANSI colors if not supported by terminal or when not in a tty" - "TUI: Implement deleting own status messages" - - "On Windows store config files under %APPDATA%" + - "TUI: Improve rendering of reblogged statuses (thanks @dlax)" + - "TUI: Set urwid encoding to UTF-8 (thanks @bearzk)" 0.23.1: date: 2019-09-04 diff --git a/setup.py b/setup.py index 8e4cad3..ccaf473 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.23.1', + version='0.24.0', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index c347e62..8b2944d 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -2,7 +2,7 @@ from collections import namedtuple -__version__ = '0.23.1' +__version__ = '0.24.0' App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) User = namedtuple('User', ['instance', 'username', 'access_token'])