From 83318ca43b0e2615774a1a5f1ee948d70d9b28b5 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Fri, 3 Feb 2023 05:34:38 +0100 Subject: [PATCH] Add changelog, bump version --- changelog.yaml | 10 ++++++++++ setup.py | 2 +- toot/__init__.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/changelog.yaml b/changelog.yaml index fe79326..589f197 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,3 +1,13 @@ +0.34.0: + date: 2023-02-03 + changes: + - "Fix Python version detection which would fail in some cases (thanks K)" + - "Fix toot --help not working (thanks Norman Walsh)" + - "TUI: Add option to save status JSON data from source window (thanks Dan Schwarz)" + - "TUI: Add `--relative-datetimes` option to show relative datetimes (thanks Dan Schwarz)" + - "TUI: Don't focus newly created post (#188, thanks Dan Schwarz)" + - "TUI: Add ability to scroll long status messages (#166, thanks Dan Schwarz)" + 0.33.1: date: 2023-01-03 changes: diff --git a/setup.py b/setup.py index 079bcc6..d35c27f 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.33.1', + version='0.34.0', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index 459cafc..b7716e5 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -1,6 +1,6 @@ from collections import namedtuple -__version__ = '0.33.1' +__version__ = '0.34.0' App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) User = namedtuple('User', ['instance', 'username', 'access_token'])