From ec16ba0bbf8036535c85707c9355dd166b5817e4 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Sat, 12 Nov 2022 09:21:00 +0100 Subject: [PATCH] Bump version, add changelog --- CHANGELOG.md | 12 ++++++++++++ changelog.yaml | 10 ++++++++++ setup.py | 2 +- toot/__init__.py | 2 +- 4 files changed, 24 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3865b5..2b5c6c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,18 @@ Changelog +**0.28.1 (2022-11-12)** + +* Fix account search to be case insensitive (thanks @TheJokersThief) +* Fix account search to use v2 endpoint, since v1 endpoint was removed on some + instances (thanks @kaja47) +* Add '.toot' extension to temporary files when composing toot in an editor + (thanks @larsks) +* Display localized datetimes in timeline (thanks @mmmmmmbeer) +* Don't use # for comments when composing toot in an editor, since that made it + impossible to post lines starting with #. +* TUI: Fix crash when poll does not have an expiry date + **0.28.0 (2021-08-28)** * **BREAKING**: Removed `toot curses`, deprecated since 2019-09-03 diff --git a/changelog.yaml b/changelog.yaml index e045c89..8b24357 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,3 +1,13 @@ +0.28.1: + date: 2022-11-12 + changes: + - "Fix account search to be case insensitive (thanks @TheJokersThief)" + - "Fix account search to use v2 endpoint, since v1 endpoint was removed on some instances (thanks @kaja47)" + - "Add '.toot' extension to temporary files when composing toot in an editor (thanks @larsks)" + - "Display localized datetimes in timeline (thanks @mmmmmmbeer)" + - "Don't use # for comments when composing toot in an editor, since that made it impossible to post lines starting with #." + - "TUI: Fix crash when poll does not have an expiry date" + 0.28.0: date: 2021-08-28 changes: diff --git a/setup.py b/setup.py index 916e8cd..e062dbc 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.28.0', + version='0.28.1', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index 3e732d3..02e480f 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -2,7 +2,7 @@ from collections import namedtuple -__version__ = '0.28.0' +__version__ = '0.28.1' App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) User = namedtuple('User', ['instance', 'username', 'access_token'])