From d4b6447d0fd6e9d577a85dcdabe30fe8028f6883 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Thu, 16 Nov 2023 16:41:15 +0100 Subject: [PATCH] Bump version, add changelog --- CHANGELOG.md | 5 +++++ changelog.yaml | 6 ++++++ docs/changelog.md | 5 +++++ setup.py | 2 +- toot/__init__.py | 2 +- 5 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0f07aa..0834c01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ Changelog +**0.38.2 (2023-11-16)** + +* Fix compatibility with Pleroma (#399, thanks Sandra Snan) +* Fix language documentation (thanks Sandra Snan) + **0.38.1 (2023-07-25)** * Fix relative datetimes option in TUI diff --git a/changelog.yaml b/changelog.yaml index 303e9f6..4bcee63 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,3 +1,9 @@ +0.38.2: + date: 2023-11-16 + changes: + - "Fix compatibility with Pleroma (#399, thanks Sandra Snan)" + - "Fix language documentation (thanks Sandra Snan)" + 0.38.1: date: 2023-07-25 changes: diff --git a/docs/changelog.md b/docs/changelog.md index c0f07aa..0834c01 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -3,6 +3,11 @@ Changelog +**0.38.2 (2023-11-16)** + +* Fix compatibility with Pleroma (#399, thanks Sandra Snan) +* Fix language documentation (thanks Sandra Snan) + **0.38.1 (2023-07-25)** * Fix relative datetimes option in TUI diff --git a/setup.py b/setup.py index d893764..624e55d 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.38.1', + version='0.38.2', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index 440dba9..e572120 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.1' +__version__ = '0.38.2' App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) User = namedtuple('User', ['instance', 'username', 'access_token'])