mirror of
https://github.com/ihabunek/toot
synced 2025-01-11 00:53:49 +01:00
Bump version
This commit is contained in:
parent
ff1374a95c
commit
9e800996f1
21
CHANGELOG.md
21
CHANGELOG.md
@ -3,6 +3,27 @@ Changelog
|
|||||||
|
|
||||||
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
|
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
|
||||||
|
|
||||||
|
**0.33.0 (2023-01-02)**
|
||||||
|
|
||||||
|
* Add CONTRIBUTING.md containing a contribution guide
|
||||||
|
* Add `env` command which prints local env to include in issues
|
||||||
|
* Add TOOT_POST_VISIBILITY environment to control default post visibility
|
||||||
|
(thanks Lim Ding Wen)
|
||||||
|
* Add `tags_followed`, `tags_follow`, and `tags_unfollow` commands (thanks
|
||||||
|
Daniel Schwarz)
|
||||||
|
* Add `tags_bookmarks` command (thanks Giuseppe Bilotta)
|
||||||
|
* TUI: Show an error if attemptint to boost a private status (thanks Lim Ding
|
||||||
|
Wen)
|
||||||
|
* TUI: Hide polls, cards and media attachments for sensitive posts (thanks
|
||||||
|
Daniel Schwarz)
|
||||||
|
* TUI: Add bookmarking and bookmark timeline (thanks Daniel Schwarz)
|
||||||
|
* TUI: Show status visiblity (thanks Lim Ding Wen)
|
||||||
|
* TUI: Reply to original account instead of boosting account (thanks Lim Ding
|
||||||
|
Wen)
|
||||||
|
* TUI: Refresh screen after exiting browser, required for text browsers (thanks
|
||||||
|
Daniel Schwarz)
|
||||||
|
* TUI: Highlight followed tags (thanks Daniel Schwarz)
|
||||||
|
|
||||||
**0.32.1 (2022-12-12)**
|
**0.32.1 (2022-12-12)**
|
||||||
|
|
||||||
* Fix packaging issue, missing toot.utils module
|
* Fix packaging issue, missing toot.utils module
|
||||||
|
@ -1,3 +1,19 @@
|
|||||||
|
0.33.0:
|
||||||
|
date: 2023-01-02
|
||||||
|
changes:
|
||||||
|
- "Add CONTRIBUTING.md containing a contribution guide"
|
||||||
|
- "Add `env` command which prints local env to include in issues"
|
||||||
|
- "Add TOOT_POST_VISIBILITY environment to control default post visibility (thanks Lim Ding Wen)"
|
||||||
|
- "Add `tags_followed`, `tags_follow`, and `tags_unfollow` commands (thanks Daniel Schwarz)"
|
||||||
|
- "Add `tags_bookmarks` command (thanks Giuseppe Bilotta)"
|
||||||
|
- "TUI: Show an error if attemptint to boost a private status (thanks Lim Ding Wen)"
|
||||||
|
- "TUI: Hide polls, cards and media attachments for sensitive posts (thanks Daniel Schwarz)"
|
||||||
|
- "TUI: Add bookmarking and bookmark timeline (thanks Daniel Schwarz)"
|
||||||
|
- "TUI: Show status visiblity (thanks Lim Ding Wen)"
|
||||||
|
- "TUI: Reply to original account instead of boosting account (thanks Lim Ding Wen)"
|
||||||
|
- "TUI: Refresh screen after exiting browser, required for text browsers (thanks Daniel Schwarz)"
|
||||||
|
- "TUI: Highlight followed tags (thanks Daniel Schwarz)"
|
||||||
|
|
||||||
0.32.1:
|
0.32.1:
|
||||||
date: 2022-12-12
|
date: 2022-12-12
|
||||||
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.32.1',
|
version='0.33.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.32.1'
|
__version__ = '0.33.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 New Issue
Block a user