mirror of
https://github.com/ihabunek/toot.git
synced 2025-02-02 15:07:51 -05:00
Bump version, update changelog
This commit is contained in:
parent
02d358907c
commit
b4bbb41a20
15
CHANGELOG.md
15
CHANGELOG.md
@ -3,6 +3,21 @@ Changelog
|
||||
|
||||
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
|
||||
|
||||
**0.32.0 (2022-12-12)**
|
||||
|
||||
* TUI: Press N to translate status, if available on your instance (thanks Daniel
|
||||
Schwarz)
|
||||
* Fix: `post --language` option now accepts two-letter country code instead of
|
||||
3-letter. This was changed by mastodon at some point.
|
||||
* Fix: Failing to find accounts using qualified usernames (#254)
|
||||
|
||||
**0.31.0 (2022-12-07)**
|
||||
|
||||
* **BREAKING:** Require Python 3.6+
|
||||
* Add `post --scheduled-in` option for easier scheduling
|
||||
* Fix posting toots to Pleroma
|
||||
* Improved testing
|
||||
|
||||
**0.30.1 (2022-11-30)**
|
||||
|
||||
* Remove usage of depreacted `text_url` status field. Fixes posting media
|
||||
|
@ -1,3 +1,10 @@
|
||||
0.32.0:
|
||||
date: 2022-12-12
|
||||
changes:
|
||||
- "TUI: Press N to translate status, if available on your instance (thanks Daniel Schwarz)"
|
||||
- "Fix: `post --language` option now accepts two-letter country code instead of 3-letter. This was changed by mastodon at some point."
|
||||
- "Fix: Failing to find accounts using qualified usernames (#254)"
|
||||
|
||||
0.31.0:
|
||||
date: 2022-12-07
|
||||
changes:
|
||||
|
2
setup.py
2
setup.py
@ -12,7 +12,7 @@ and blocking accounts and other actions.
|
||||
|
||||
setup(
|
||||
name='toot',
|
||||
version='0.31.0',
|
||||
version='0.32.0',
|
||||
description='Mastodon CLI client',
|
||||
long_description=long_description.strip(),
|
||||
author='Ivan Habunek',
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
from collections import namedtuple
|
||||
|
||||
__version__ = '0.31.0'
|
||||
__version__ = '0.32.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