pull/235/head 0.29.0
Ivan Habunek 2022-11-21 09:45:51 +01:00
rodzic 1bab2e117b
commit 5aa779ef06
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: CDBD63C43A30BB95
4 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -3,7 +3,7 @@ Changelog
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
**0.29.0 (TBA)**
**0.29.0 (2022-11-21)**
* Add `bookmark` and `unbookmark` commands
* Add `following` and `followers` commands (thanks @Oblomov)

Wyświetl plik

@ -1,5 +1,5 @@
0.29.0:
date: TBA
date: 2022-11-21
changes:
- "Add `bookmark` and `unbookmark` commands"
- "Add `following` and `followers` commands (thanks @Oblomov)"

Wyświetl plik

@ -12,7 +12,7 @@ and blocking accounts and other actions.
setup(
name='toot',
version='0.28.1',
version='0.29.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.28.1'
__version__ = '0.29.0'
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
User = namedtuple('User', ['instance', 'username', 'access_token'])