Bump version, add changelog

pull/226/head
Ivan Habunek 2022-11-12 09:21:00 +01:00
rodzic e318581dd1
commit ec16ba0bbf
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: CDBD63C43A30BB95
4 zmienionych plików z 24 dodań i 2 usunięć

Wyświetl plik

@ -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

Wyświetl plik

@ -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:

Wyświetl plik

@ -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',

Wyświetl plik

@ -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'])