Bump version, add changelog
This commit is contained in:
parent
6cb170b95c
commit
d4b6447d0f
5 changed files with 18 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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
|
||||
|
|
2
setup.py
2
setup.py
|
@ -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',
|
||||
|
|
|
@ -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'])
|
||||
|
|
Loading…
Reference in a new issue