Bump version, add changelog

pull/456/head 0.41.0
Ivan Habunek 2024-01-02 22:03:31 +01:00
rodzic 5a26ab4940
commit 081bc0459e
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: F5F0623FF5EBCB3D
5 zmienionych plików z 26 dodań i 2 usunięć

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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