Bump version, add changelog
This commit is contained in:
parent
6cb170b95c
commit
d4b6447d0f
|
@ -3,6 +3,11 @@ Changelog
|
||||||
|
|
||||||
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
|
<!-- 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)**
|
**0.38.1 (2023-07-25)**
|
||||||
|
|
||||||
* Fix relative datetimes option in TUI
|
* 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:
|
0.38.1:
|
||||||
date: 2023-07-25
|
date: 2023-07-25
|
||||||
changes:
|
changes:
|
||||||
|
|
|
@ -3,6 +3,11 @@ Changelog
|
||||||
|
|
||||||
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
|
<!-- 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)**
|
**0.38.1 (2023-07-25)**
|
||||||
|
|
||||||
* Fix relative datetimes option in TUI
|
* Fix relative datetimes option in TUI
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -12,7 +12,7 @@ and blocking accounts and other actions.
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='toot',
|
name='toot',
|
||||||
version='0.38.1',
|
version='0.38.2',
|
||||||
description='Mastodon CLI client',
|
description='Mastodon CLI client',
|
||||||
long_description=long_description.strip(),
|
long_description=long_description.strip(),
|
||||||
author='Ivan Habunek',
|
author='Ivan Habunek',
|
||||||
|
|
|
@ -4,7 +4,7 @@ import sys
|
||||||
from os.path import join, expanduser
|
from os.path import join, expanduser
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
|
|
||||||
__version__ = '0.38.1'
|
__version__ = '0.38.2'
|
||||||
|
|
||||||
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
|
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
|
||||||
User = namedtuple('User', ['instance', 'username', 'access_token'])
|
User = namedtuple('User', ['instance', 'username', 'access_token'])
|
||||||
|
|
Loading…
Reference in New Issue