diff --git a/CHANGELOG.md b/CHANGELOG.md index 9aab8f1..436ee03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ Changelog +**0.41.1 (2024-01-02)** + +* Fix a crash in settings parsing code + **0.41.0 (2024-01-02)** * Honour user's default visibility set in Mastodon preferences instead of always diff --git a/changelog.yaml b/changelog.yaml index dee9093..8204466 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -1,3 +1,8 @@ +0.41.1: + date: 2024-01-02 + changes: + - "Fix a crash in settings parsing code" + 0.41.0: date: 2024-01-02 changes: diff --git a/docs/changelog.md b/docs/changelog.md index 9aab8f1..436ee03 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -3,6 +3,10 @@ Changelog +**0.41.1 (2024-01-02)** + +* Fix a crash in settings parsing code + **0.41.0 (2024-01-02)** * Honour user's default visibility set in Mastodon preferences instead of always diff --git a/setup.py b/setup.py index 3448655..7b3b96f 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ and blocking accounts and other actions. setup( name='toot', - version='0.41.0', + version='0.41.1', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index 1abae79..2a3f4ab 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.0' +__version__ = '0.41.1' class App(NamedTuple):