Bump version, add changelog

This commit is contained in:
Ivan Habunek 2023-06-28 12:41:47 +02:00
parent 8aad38671e
commit bb625da257
No known key found for this signature in database
GPG Key ID: F5F0623FF5EBCB3D
5 changed files with 20 additions and 4 deletions

View File

@ -5,9 +5,15 @@ Changelog
**0.37.0 (TBA)**
* **BREAKING:** Require Python 3.7+
* Add `timeline --account` option to show the account timeline (thanks Dan
Schwarz)
* Add `toot status` command to show a single status
* TUI: Add personal timeline (thanks Dan Schwarz)
* TUI: Highlight followed accounts in status details (thanks Dan Schwarz)
* TUI: Restructured goto menu (thanks Dan Schwarz)
* TUI: Fix boosting boosted statuses (thanks Dan Schwarz)
* TUI: Add support for list timelines (thanks Dan Schwarz)
**0.36.0 (2023-03-09)**

View File

@ -1,10 +1,14 @@
0.37.0:
date: "TBA"
date: 2023-06-28
changes:
- "**BREAKING:** Require Python 3.7+"
- "Add `timeline --account` option to show the account timeline (thanks Dan Schwarz)"
- "Add `toot status` command to show a single status
- "Add `toot status` command to show a single status"
- "TUI: Add personal timeline (thanks Dan Schwarz)"
- "TUI: Highlight followed accounts in status details (thanks Dan Schwarz)"
- "TUI: Restructured goto menu (thanks Dan Schwarz)"
- "TUI: Fix boosting boosted statuses (thanks Dan Schwarz)"
- "TUI: Add support for list timelines (thanks Dan Schwarz)"
0.36.0:
date: 2023-03-09

View File

@ -5,9 +5,15 @@ Changelog
**0.37.0 (TBA)**
* **BREAKING:** Require Python 3.7+
* Add `timeline --account` option to show the account timeline (thanks Dan
Schwarz)
* Add `toot status` command to show a single status
* TUI: Add personal timeline (thanks Dan Schwarz)
* TUI: Highlight followed accounts in status details (thanks Dan Schwarz)
* TUI: Restructured goto menu (thanks Dan Schwarz)
* TUI: Fix boosting boosted statuses (thanks Dan Schwarz)
* TUI: Add support for list timelines (thanks Dan Schwarz)
**0.36.0 (2023-03-09)**

View File

@ -12,7 +12,7 @@ and blocking accounts and other actions.
setup(
name='toot',
version='0.36.0',
version='0.37.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.36.0'
__version__ = '0.37.0'
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
User = namedtuple('User', ['instance', 'username', 'access_token'])