From 081bc0459e305be3f7c59ec4d05063670e91a789 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Tue, 2 Jan 2024 22:03:31 +0100 Subject: [PATCH] Bump version, add changelog --- CHANGELOG.md | 8 ++++++++ changelog.yaml | 8 ++++++++ docs/changelog.md | 8 ++++++++ setup.py | 2 +- toot/__init__.py | 2 +- 5 files changed, 26 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index acf986a..9aab8f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ Changelog +**0.41.0 (2024-01-02)** + +* Honour user's default visibility set in Mastodon preferences instead of always + defaulting to public visibility (thanks Lexi Winter) +* TUI: Add editing toots (thanks Lexi Winter) +* TUI: Fix a bug which made pallette config in settings not work +* TUI: Show edit datetime in status detail (thanks Lexi Winter) + **0.40.2 (2023-12-28)** * Reinstate `toot post --using` option. diff --git a/changelog.yaml b/changelog.yaml index 34c219d..dee9093 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,3 +1,11 @@ +0.41.0: + date: 2024-01-02 + changes: + - "Honour user's default visibility set in Mastodon preferences instead of always defaulting to public visibility (thanks Lexi Winter)" + - "TUI: Add editing toots (thanks Lexi Winter)" + - "TUI: Fix a bug which made pallette config in settings not work" + - "TUI: Show edit datetime in status detail (thanks Lexi Winter)" + 0.40.2: date: 2023-12-28 changes: diff --git a/docs/changelog.md b/docs/changelog.md index acf986a..9aab8f1 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -3,6 +3,14 @@ Changelog +**0.41.0 (2024-01-02)** + +* Honour user's default visibility set in Mastodon preferences instead of always + defaulting to public visibility (thanks Lexi Winter) +* TUI: Add editing toots (thanks Lexi Winter) +* TUI: Fix a bug which made pallette config in settings not work +* TUI: Show edit datetime in status detail (thanks Lexi Winter) + **0.40.2 (2023-12-28)** * Reinstate `toot post --using` option. diff --git a/setup.py b/setup.py index 38eb5b8..3448655 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.40.2', + version='0.41.0', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index 53834ff..1abae79 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -4,7 +4,7 @@ import sys from os.path import join, expanduser from typing import NamedTuple -__version__ = '0.40.2' +__version__ = '0.41.0' class App(NamedTuple):