pull/113/head 0.22.0
Ivan Habunek 2019-08-01 13:25:45 +02:00
rodzic 83367d1c42
commit e108f370e1
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: CDBD63C43A30BB95
3 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -1,7 +1,7 @@
Changelog
---------
**0.22.0 (TBA)**
**0.22.0 (2019-08-01)**
* **BRAEAKING**: Dropped support for Python 3.3
* Add `toot notifications` to show notifications (thanks @dlax)

Wyświetl plik

@ -11,7 +11,7 @@ Contains an experimental curses application for reading the timeline.
setup(
name='toot',
version='0.21.0',
version='0.22.0',
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.21.0'
__version__ = '0.22.0'
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
User = namedtuple('User', ['instance', 'username', 'access_token'])