Add changelog, bump version

pull/474/head 0.42.0
Ivan Habunek 2024-03-09 12:12:57 +01:00
rodzic 3420f1466a
commit 3bac9b2fb6
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: F5F0623FF5EBCB3D
5 zmienionych plików z 24 dodań i 2 usunięć

Wyświetl plik

@ -3,6 +3,13 @@ Changelog
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
**0.42.0 (2024-03-09)**
* TUI: Add `toot tui --always-show-sensitive` option (thanks Lexi Winter)
* TUI: Document missing shortcuts (thanks Denis Laxalde)
* TUI: Use rounded boxes for nicer visuals (thanks Dan Schwarz)
* TUI: Don't break if edited_at status field does not exist
**0.41.1 (2024-01-02)**
* Fix a crash in settings parsing code

Wyświetl plik

@ -1,3 +1,11 @@
0.42.0:
date: 2024-03-09
changes:
- "TUI: Add `toot tui --always-show-sensitive` option (thanks Lexi Winter)"
- "TUI: Document missing shortcuts (thanks Denis Laxalde)"
- "TUI: Use rounded boxes for nicer visuals (thanks Dan Schwarz)"
- "TUI: Don't break if edited_at status field does not exist"
0.41.1:
date: 2024-01-02
changes:

Wyświetl plik

@ -3,6 +3,13 @@ Changelog
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
**0.42.0 (2024-03-09)**
* TUI: Add `toot tui --always-show-sensitive` option (thanks Lexi Winter)
* TUI: Document missing shortcuts (thanks Denis Laxalde)
* TUI: Use rounded boxes for nicer visuals (thanks Dan Schwarz)
* TUI: Don't break if edited_at status field does not exist
**0.41.1 (2024-01-02)**
* Fix a crash in settings parsing code

Wyświetl plik

@ -12,7 +12,7 @@ and blocking accounts and other actions.
setup(
name='toot',
version='0.41.1',
version='0.42.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.41.1'
__version__ = '0.42.0'
class App(NamedTuple):