Bump version, add changelog

pull/393/head 0.38.1
Ivan Habunek 2023-07-25 09:34:21 +02:00
rodzic 8c7bb25184
commit 0a70af9e09
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: CDBD63C43A30BB95
5 zmienionych plików z 15 dodań i 2 usunięć

Wyświetl plik

@ -3,6 +3,10 @@ Changelog
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
**0.38.1 (2023-07-25)**
* Fix relative datetimes option in TUI
**0.38.0 (2023-07-25)**
* Add `toot muted` and `toot blocked` commands (thanks Florian Obser)

Wyświetl plik

@ -1,3 +1,8 @@
0.38.1:
date: 2023-07-25
changes:
- "Fix relative datetimes option in TUI"
0.38.0:
date: 2023-07-25
changes:

Wyświetl plik

@ -3,6 +3,10 @@ Changelog
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
**0.38.1 (2023-07-25)**
* Fix relative datetimes option in TUI
**0.38.0 (2023-07-25)**
* Add `toot muted` and `toot blocked` commands (thanks Florian Obser)

Wyświetl plik

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

Wyświetl plik

@ -4,7 +4,7 @@ import sys
from os.path import join, expanduser
from collections import namedtuple
__version__ = '0.38.0'
__version__ = '0.38.1'
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
User = namedtuple('User', ['instance', 'username', 'access_token'])