From b4bbb41a20b317a053c358c1e838b84449955746 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Mon, 12 Dec 2022 13:24:08 +0100 Subject: [PATCH] Bump version, update changelog --- CHANGELOG.md | 15 +++++++++++++++ changelog.yaml | 7 +++++++ setup.py | 2 +- toot/__init__.py | 2 +- 4 files changed, 24 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0851c7..5fec146 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,21 @@ Changelog +**0.32.0 (2022-12-12)** + +* TUI: Press N to translate status, if available on your instance (thanks Daniel + Schwarz) +* Fix: `post --language` option now accepts two-letter country code instead of + 3-letter. This was changed by mastodon at some point. +* Fix: Failing to find accounts using qualified usernames (#254) + +**0.31.0 (2022-12-07)** + +* **BREAKING:** Require Python 3.6+ +* Add `post --scheduled-in` option for easier scheduling +* Fix posting toots to Pleroma +* Improved testing + **0.30.1 (2022-11-30)** * Remove usage of depreacted `text_url` status field. Fixes posting media diff --git a/changelog.yaml b/changelog.yaml index ffc6591..b2f8328 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,3 +1,10 @@ +0.32.0: + date: 2022-12-12 + changes: + - "TUI: Press N to translate status, if available on your instance (thanks Daniel Schwarz)" + - "Fix: `post --language` option now accepts two-letter country code instead of 3-letter. This was changed by mastodon at some point." + - "Fix: Failing to find accounts using qualified usernames (#254)" + 0.31.0: date: 2022-12-07 changes: diff --git a/setup.py b/setup.py index e5a4cb5..ebab4ab 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.31.0', + version='0.32.0', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index b661a19..79ea990 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -2,7 +2,7 @@ from collections import namedtuple -__version__ = '0.31.0' +__version__ = '0.32.0' App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) User = namedtuple('User', ['instance', 'username', 'access_token'])