Bump version, add changelog

This commit is contained in:
Ivan Habunek 2023-11-16 16:41:15 +01:00
parent 6cb170b95c
commit d4b6447d0f
No known key found for this signature in database
GPG Key ID: F5F0623FF5EBCB3D
5 changed files with 18 additions and 2 deletions

View File

@ -3,6 +3,11 @@ Changelog
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
**0.38.2 (2023-11-16)**
* Fix compatibility with Pleroma (#399, thanks Sandra Snan)
* Fix language documentation (thanks Sandra Snan)
**0.38.1 (2023-07-25)**
* Fix relative datetimes option in TUI

View File

@ -1,3 +1,9 @@
0.38.2:
date: 2023-11-16
changes:
- "Fix compatibility with Pleroma (#399, thanks Sandra Snan)"
- "Fix language documentation (thanks Sandra Snan)"
0.38.1:
date: 2023-07-25
changes:

View File

@ -3,6 +3,11 @@ Changelog
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
**0.38.2 (2023-11-16)**
* Fix compatibility with Pleroma (#399, thanks Sandra Snan)
* Fix language documentation (thanks Sandra Snan)
**0.38.1 (2023-07-25)**
* Fix relative datetimes option in TUI

View File

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

View File

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