Add changelog, bump version

pull/299/head^2 0.34.1
Ivan Habunek 2023-02-20 08:43:11 +01:00
rodzic c944863f3f
commit 4b87f7876c
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: F5F0623FF5EBCB3D
4 zmienionych plików z 11 dodań i 2 usunięć

Wyświetl plik

@ -3,6 +3,10 @@ Changelog
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
**0.34.1 (2023-02-20)**
* TUI: Fix bug where TUI would break on older Mastodon instances (#309)
**0.34.0 (2023-02-03)**
* Fix Python version detection which would fail in some cases (thanks K)

Wyświetl plik

@ -1,3 +1,8 @@
0.34.1:
date: 2023-02-20
changes:
- "TUI: Fix bug where TUI would break on older Mastodon instances (#309)"
0.34.0:
date: 2023-02-03
changes:

Wyświetl plik

@ -12,7 +12,7 @@ and blocking accounts and other actions.
setup(
name='toot',
version='0.34.0',
version='0.34.1',
description='Mastodon CLI client',
long_description=long_description.strip(),
author='Ivan Habunek',

Wyświetl plik

@ -1,6 +1,6 @@
from collections import namedtuple
__version__ = '0.34.0'
__version__ = '0.34.1'
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
User = namedtuple('User', ['instance', 'username', 'access_token'])