Add changelog, bump version

This commit is contained in:
Ivan Habunek 2023-02-03 05:34:38 +01:00
parent de7abd0b68
commit 83318ca43b
No known key found for this signature in database
GPG Key ID: F5F0623FF5EBCB3D
3 changed files with 12 additions and 2 deletions

View File

@ -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:
date: 2023-01-03
changes:

View File

@ -12,7 +12,7 @@ and blocking accounts and other actions.
setup(
name='toot',
version='0.33.1',
version='0.34.0',
description='Mastodon CLI client',
long_description=long_description.strip(),
author='Ivan Habunek',

View File

@ -1,6 +1,6 @@
from collections import namedtuple
__version__ = '0.33.1'
__version__ = '0.34.0'
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
User = namedtuple('User', ['instance', 'username', 'access_token'])