Add changelog, bump version
This commit is contained in:
parent
de7abd0b68
commit
83318ca43b
3 changed files with 12 additions and 2 deletions
|
@ -1,3 +1,13 @@
|
||||||
|
0.34.0:
|
||||||
|
date: 2023-02-03
|
||||||
|
changes:
|
||||||
|
- "Fix Python version detection which would fail in some cases (thanks K)"
|
||||||
|
- "Fix toot --help not working (thanks Norman Walsh)"
|
||||||
|
- "TUI: Add option to save status JSON data from source window (thanks Dan Schwarz)"
|
||||||
|
- "TUI: Add `--relative-datetimes` option to show relative datetimes (thanks Dan Schwarz)"
|
||||||
|
- "TUI: Don't focus newly created post (#188, thanks Dan Schwarz)"
|
||||||
|
- "TUI: Add ability to scroll long status messages (#166, thanks Dan Schwarz)"
|
||||||
|
|
||||||
0.33.1:
|
0.33.1:
|
||||||
date: 2023-01-03
|
date: 2023-01-03
|
||||||
changes:
|
changes:
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -12,7 +12,7 @@ and blocking accounts and other actions.
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='toot',
|
name='toot',
|
||||||
version='0.33.1',
|
version='0.34.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',
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
|
|
||||||
__version__ = '0.33.1'
|
__version__ = '0.34.0'
|
||||||
|
|
||||||
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
|
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
|
||||||
User = namedtuple('User', ['instance', 'username', 'access_token'])
|
User = namedtuple('User', ['instance', 'username', 'access_token'])
|
||||||
|
|
Loading…
Reference in a new issue