From f9fef1927c11385530f0f7b0f93bf7e7402ed9fc Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Wed, 7 Dec 2022 15:09:09 +0100 Subject: [PATCH] Bump version, update changelog --- changelog.yaml | 5 ++++- setup.py | 2 +- toot/__init__.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/changelog.yaml b/changelog.yaml index fcdf67a..ffc6591 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,7 +1,10 @@ 0.31.0: - date: "TBA" + date: 2022-12-07 changes: + - "**BREAKING:** Require Python 3.6+" - "Add `post --scheduled-in` option for easier scheduling" + - "Fix posting toots to Pleroma" + - "Improved testing" 0.30.1: date: 2022-11-30 diff --git a/setup.py b/setup.py index d24bffe..e5a4cb5 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.30.1', + version='0.31.0', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index 46a58d0..b661a19 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -2,7 +2,7 @@ from collections import namedtuple -__version__ = '0.30.1' +__version__ = '0.31.0' App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) User = namedtuple('User', ['instance', 'username', 'access_token'])