Bump version, add changelog

This commit is contained in:
Ivan Habunek 2024-01-02 22:03:31 +01:00
parent 5a26ab4940
commit 081bc0459e
No known key found for this signature in database
GPG Key ID: F5F0623FF5EBCB3D
5 changed files with 26 additions and 2 deletions

View File

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

View File

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

View File

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

View File

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

View File

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