mirror of
https://github.com/ihabunek/toot
synced 2025-02-03 12:47:32 +01:00
Add changelog, bump version
This commit is contained in:
parent
3420f1466a
commit
3bac9b2fb6
@ -3,6 +3,13 @@ Changelog
|
|||||||
|
|
||||||
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
|
<!-- 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)**
|
**0.41.1 (2024-01-02)**
|
||||||
|
|
||||||
* Fix a crash in settings parsing code
|
* Fix a crash in settings parsing code
|
||||||
|
@ -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:
|
0.41.1:
|
||||||
date: 2024-01-02
|
date: 2024-01-02
|
||||||
changes:
|
changes:
|
||||||
|
@ -3,6 +3,13 @@ Changelog
|
|||||||
|
|
||||||
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
|
<!-- 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)**
|
**0.41.1 (2024-01-02)**
|
||||||
|
|
||||||
* Fix a crash in settings parsing code
|
* Fix a crash in settings parsing code
|
||||||
|
2
setup.py
2
setup.py
@ -12,7 +12,7 @@ and blocking accounts and other actions.
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='toot',
|
name='toot',
|
||||||
version='0.41.1',
|
version='0.42.0',
|
||||||
description='Mastodon CLI client',
|
description='Mastodon CLI client',
|
||||||
long_description=long_description.strip(),
|
long_description=long_description.strip(),
|
||||||
author='Ivan Habunek',
|
author='Ivan Habunek',
|
||||||
|
@ -4,7 +4,7 @@ import sys
|
|||||||
from os.path import join, expanduser
|
from os.path import join, expanduser
|
||||||
from typing import NamedTuple
|
from typing import NamedTuple
|
||||||
|
|
||||||
__version__ = '0.41.1'
|
__version__ = '0.42.0'
|
||||||
|
|
||||||
|
|
||||||
class App(NamedTuple):
|
class App(NamedTuple):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user