Bump version, add changelog

This commit is contained in:
Ivan Habunek 2024-01-02 22:07:53 +01:00
parent 964efc5b4c
commit b4cbeeedeb
No known key found for this signature in database
GPG Key ID: F5F0623FF5EBCB3D
5 changed files with 15 additions and 2 deletions

View File

@ -3,6 +3,10 @@ Changelog
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
**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

View File

@ -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:

View File

@ -3,6 +3,10 @@ Changelog
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
**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

View File

@ -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',

View File

@ -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):