From 08dd02d9890f4ca240987e7944ab61463f213024 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Tue, 3 Jan 2023 12:05:26 +0100 Subject: [PATCH] Bump version --- CHANGELOG.md | 4 ++++ changelog.yaml | 5 +++++ setup.py | 2 +- toot/__init__.py | 2 +- 4 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a171f25..9b4c601 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ Changelog +**0.33.1 (2023-01-03)** + +* TUI: Fix crash when viewing toot in browser + **0.33.0 (2023-01-02)** * Add CONTRIBUTING.md containing a contribution guide diff --git a/changelog.yaml b/changelog.yaml index 91de2cf..fe79326 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,3 +1,8 @@ +0.33.1: + date: 2023-01-03 + changes: + - "TUI: Fix crash when viewing toot in browser" + 0.33.0: date: 2023-01-02 changes: diff --git a/setup.py b/setup.py index 4d95344..079bcc6 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.33.0', + version='0.33.1', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index d58dfa4..459cafc 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -1,6 +1,6 @@ from collections import namedtuple -__version__ = '0.33.0' +__version__ = '0.33.1' App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) User = namedtuple('User', ['instance', 'username', 'access_token'])