From 5aa779ef066bd81cb69dc57e8e9b4d6d193ac9e3 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Mon, 21 Nov 2022 09:45:51 +0100 Subject: [PATCH] Bump version --- CHANGELOG.md | 2 +- changelog.yaml | 2 +- setup.py | 2 +- toot/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index adfb324..54be761 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ Changelog -**0.29.0 (TBA)** +**0.29.0 (2022-11-21)** * Add `bookmark` and `unbookmark` commands * Add `following` and `followers` commands (thanks @Oblomov) diff --git a/changelog.yaml b/changelog.yaml index ef0da24..3772cdb 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,5 +1,5 @@ 0.29.0: - date: TBA + date: 2022-11-21 changes: - "Add `bookmark` and `unbookmark` commands" - "Add `following` and `followers` commands (thanks @Oblomov)" diff --git a/setup.py b/setup.py index 632181f..2e913ec 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.28.1', + version='0.29.0', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index 02e480f..a9d4668 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -2,7 +2,7 @@ from collections import namedtuple -__version__ = '0.28.1' +__version__ = '0.29.0' App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) User = namedtuple('User', ['instance', 'username', 'access_token'])