mirror of
https://github.com/ihabunek/toot
synced 2024-12-22 23:08:17 +01:00
Bump version, add changelog
This commit is contained in:
parent
5a26ab4940
commit
081bc0459e
@ -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.
|
||||
|
@ -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:
|
||||
|
@ -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.
|
||||
|
2
setup.py
2
setup.py
@ -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',
|
||||
|
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user