From c74d2ad916f7fea8700428ea01e8e3bd20dff6c4 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Mon, 12 Dec 2022 13:31:15 +0100 Subject: [PATCH] Bump version, generate changelog --- CHANGELOG.md | 4 ++++ setup.py | 2 +- toot/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fec146..141e04b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ Changelog +**0.32.1 (2022-12-12)** + +* Fix packaging issue, missing toot.utils module + **0.32.0 (2022-12-12)** * TUI: Press N to translate status, if available on your instance (thanks Daniel diff --git a/setup.py b/setup.py index 151278b..ea4bc8b 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.32.0', + version='0.32.1', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index 79ea990..2dbddfd 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -2,7 +2,7 @@ from collections import namedtuple -__version__ = '0.32.0' +__version__ = '0.32.1' App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) User = namedtuple('User', ['instance', 'username', 'access_token'])