From 0a70af9e091904e2414867854570249c57449f8b Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Tue, 25 Jul 2023 09:34:21 +0200 Subject: [PATCH] Bump version, add changelog --- CHANGELOG.md | 4 ++++ changelog.yaml | 5 +++++ docs/changelog.md | 4 ++++ setup.py | 2 +- toot/__init__.py | 2 +- 5 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8572e1c..c0f07aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ Changelog +**0.38.1 (2023-07-25)** + +* Fix relative datetimes option in TUI + **0.38.0 (2023-07-25)** * Add `toot muted` and `toot blocked` commands (thanks Florian Obser) diff --git a/changelog.yaml b/changelog.yaml index a527ca1..303e9f6 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,3 +1,8 @@ +0.38.1: + date: 2023-07-25 + changes: + - "Fix relative datetimes option in TUI" + 0.38.0: date: 2023-07-25 changes: diff --git a/docs/changelog.md b/docs/changelog.md index 8572e1c..c0f07aa 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -3,6 +3,10 @@ Changelog +**0.38.1 (2023-07-25)** + +* Fix relative datetimes option in TUI + **0.38.0 (2023-07-25)** * Add `toot muted` and `toot blocked` commands (thanks Florian Obser) diff --git a/setup.py b/setup.py index f0dfd38..d893764 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.38.0', + version='0.38.1', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index bbeb082..440dba9 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -4,7 +4,7 @@ import sys from os.path import join, expanduser from collections import namedtuple -__version__ = '0.38.0' +__version__ = '0.38.1' App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) User = namedtuple('User', ['instance', 'username', 'access_token'])