mirror of
https://github.com/ihabunek/toot
synced 2024-12-22 23:08:17 +01:00
Bump version, add changelog
This commit is contained in:
parent
e318581dd1
commit
ec16ba0bbf
12
CHANGELOG.md
12
CHANGELOG.md
@ -3,6 +3,18 @@ Changelog
|
||||
|
||||
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
|
||||
|
||||
**0.28.1 (2022-11-12)**
|
||||
|
||||
* Fix account search to be case insensitive (thanks @TheJokersThief)
|
||||
* Fix account search to use v2 endpoint, since v1 endpoint was removed on some
|
||||
instances (thanks @kaja47)
|
||||
* Add '.toot' extension to temporary files when composing toot in an editor
|
||||
(thanks @larsks)
|
||||
* Display localized datetimes in timeline (thanks @mmmmmmbeer)
|
||||
* Don't use # for comments when composing toot in an editor, since that made it
|
||||
impossible to post lines starting with #.
|
||||
* TUI: Fix crash when poll does not have an expiry date
|
||||
|
||||
**0.28.0 (2021-08-28)**
|
||||
|
||||
* **BREAKING**: Removed `toot curses`, deprecated since 2019-09-03
|
||||
|
@ -1,3 +1,13 @@
|
||||
0.28.1:
|
||||
date: 2022-11-12
|
||||
changes:
|
||||
- "Fix account search to be case insensitive (thanks @TheJokersThief)"
|
||||
- "Fix account search to use v2 endpoint, since v1 endpoint was removed on some instances (thanks @kaja47)"
|
||||
- "Add '.toot' extension to temporary files when composing toot in an editor (thanks @larsks)"
|
||||
- "Display localized datetimes in timeline (thanks @mmmmmmbeer)"
|
||||
- "Don't use # for comments when composing toot in an editor, since that made it impossible to post lines starting with #."
|
||||
- "TUI: Fix crash when poll does not have an expiry date"
|
||||
|
||||
0.28.0:
|
||||
date: 2021-08-28
|
||||
changes:
|
||||
|
2
setup.py
2
setup.py
@ -12,7 +12,7 @@ and blocking accounts and other actions.
|
||||
|
||||
setup(
|
||||
name='toot',
|
||||
version='0.28.0',
|
||||
version='0.28.1',
|
||||
description='Mastodon CLI client',
|
||||
long_description=long_description.strip(),
|
||||
author='Ivan Habunek',
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
from collections import namedtuple
|
||||
|
||||
__version__ = '0.28.0'
|
||||
__version__ = '0.28.1'
|
||||
|
||||
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
|
||||
User = namedtuple('User', ['instance', 'username', 'access_token'])
|
||||
|
Loading…
Reference in New Issue
Block a user