diff --git a/CHANGELOG.md b/CHANGELOG.md index df14351..8572e1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ Changelog +**0.38.0 (2023-07-25)** + +* Add `toot muted` and `toot blocked` commands (thanks Florian Obser) +* Add settings file, allows setting common options, defining defaults for + command arguments, and the TUI palette +* TUI: Remap shortcuts so they don't override HJKL used for navigation (thanks + Dan Schwarz) + **0.37.0 (2023-06-28)** * **BREAKING:** Require Python 3.7+ diff --git a/changelog.yaml b/changelog.yaml index d3c0a02..a527ca1 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,3 +1,10 @@ +0.38.0: + date: 2023-07-25 + changes: + - "Add `toot muted` and `toot blocked` commands (thanks Florian Obser)" + - "Add settings file, allows setting common options, defining defaults for command arguments, and the TUI palette" + - "TUI: Remap shortcuts so they don't override HJKL used for navigation (thanks Dan Schwarz)" + 0.37.0: date: 2023-06-28 changes: diff --git a/docs/changelog.md b/docs/changelog.md index df14351..8572e1c 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -3,6 +3,14 @@ Changelog +**0.38.0 (2023-07-25)** + +* Add `toot muted` and `toot blocked` commands (thanks Florian Obser) +* Add settings file, allows setting common options, defining defaults for + command arguments, and the TUI palette +* TUI: Remap shortcuts so they don't override HJKL used for navigation (thanks + Dan Schwarz) + **0.37.0 (2023-06-28)** * **BREAKING:** Require Python 3.7+ diff --git a/setup.py b/setup.py index 664cd9e..f0dfd38 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.37.0', + version='0.38.0', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index e293c15..bbeb082 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.37.0' +__version__ = '0.38.0' App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) User = namedtuple('User', ['instance', 'username', 'access_token'])