diff --git a/CHANGELOG.md b/CHANGELOG.md index eba2a47..3382de3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ Changelog +**0.42.0 (2024-03-09)** + +* TUI: Add `toot tui --always-show-sensitive` option (thanks Lexi Winter) +* TUI: Document missing shortcuts (thanks Denis Laxalde) +* TUI: Use rounded boxes for nicer visuals (thanks Dan Schwarz) +* TUI: Don't break if edited_at status field does not exist + **0.41.1 (2024-01-02)** * Fix a crash in settings parsing code diff --git a/changelog.yaml b/changelog.yaml index 5b12891..3d54d22 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,3 +1,11 @@ +0.42.0: + date: 2024-03-09 + changes: + - "TUI: Add `toot tui --always-show-sensitive` option (thanks Lexi Winter)" + - "TUI: Document missing shortcuts (thanks Denis Laxalde)" + - "TUI: Use rounded boxes for nicer visuals (thanks Dan Schwarz)" + - "TUI: Don't break if edited_at status field does not exist" + 0.41.1: date: 2024-01-02 changes: diff --git a/docs/changelog.md b/docs/changelog.md index eba2a47..3382de3 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -3,6 +3,13 @@ Changelog +**0.42.0 (2024-03-09)** + +* TUI: Add `toot tui --always-show-sensitive` option (thanks Lexi Winter) +* TUI: Document missing shortcuts (thanks Denis Laxalde) +* TUI: Use rounded boxes for nicer visuals (thanks Dan Schwarz) +* TUI: Don't break if edited_at status field does not exist + **0.41.1 (2024-01-02)** * Fix a crash in settings parsing code diff --git a/setup.py b/setup.py index 7b3b96f..124782c 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.41.1', + version='0.42.0', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index 2a3f4ab..516ea62 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.41.1' +__version__ = '0.42.0' class App(NamedTuple):