Bump version, changelog
This commit is contained in:
parent
2458e8a360
commit
1b2a9c4198
4 changed files with 18 additions and 2 deletions
|
@ -3,6 +3,14 @@ Changelog
|
||||||
|
|
||||||
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
|
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
|
||||||
|
|
||||||
|
**0.25.0 (2020-01-21)**
|
||||||
|
|
||||||
|
* Show character count when composing (#121)
|
||||||
|
* Include changelog and license in sourceballs (#133)
|
||||||
|
* Fix searching by hashtag which include the '#' (#134)
|
||||||
|
* Upgrade search to v2 (#135)
|
||||||
|
* Fix compatibility with Python < 3.6 (don't use fstrings)
|
||||||
|
|
||||||
**0.24.0 (2019-09-18)**
|
**0.24.0 (2019-09-18)**
|
||||||
|
|
||||||
* On Windows store config files under %APPDATA%
|
* On Windows store config files under %APPDATA%
|
||||||
|
|
|
@ -1,3 +1,11 @@
|
||||||
|
0.25.0:
|
||||||
|
date: 2020-01-21
|
||||||
|
changes:
|
||||||
|
- "Show character count when composing (#121)"
|
||||||
|
- "Include changelog and license in sourceballs (#133)"
|
||||||
|
- "Fix searching by hashtag which include the '#' (#134)"
|
||||||
|
- "Upgrade search to v2 (#135)"
|
||||||
|
- "Fix compatibility with Python < 3.6 (don't use fstrings)"
|
||||||
|
|
||||||
0.24.0:
|
0.24.0:
|
||||||
date: 2019-09-18
|
date: 2019-09-18
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -12,7 +12,7 @@ and blocking accounts and other actions.
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='toot',
|
name='toot',
|
||||||
version='0.24.0',
|
version='0.25.0',
|
||||||
description='Mastodon CLI client',
|
description='Mastodon CLI client',
|
||||||
long_description=long_description.strip(),
|
long_description=long_description.strip(),
|
||||||
author='Ivan Habunek',
|
author='Ivan Habunek',
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
|
|
||||||
__version__ = '0.24.0'
|
__version__ = '0.25.0'
|
||||||
|
|
||||||
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 a new issue