mirror of
https://github.com/ihabunek/toot.git
synced 2025-02-02 15:07:51 -05:00
Bump version, add changelog
This commit is contained in:
parent
8aad38671e
commit
bb625da257
@ -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)**
|
||||
|
||||
|
@ -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
|
||||
|
@ -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)**
|
||||
|
||||
|
2
setup.py
2
setup.py
@ -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',
|
||||
|
@ -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'])
|
||||
|
Loading…
x
Reference in New Issue
Block a user