mirror of
https://github.com/ihabunek/toot.git
synced 2024-12-04 14:46:33 -05:00
Bump version
This commit is contained in:
parent
e310482cb6
commit
7309e5bb53
@ -3,6 +3,10 @@ Changelog
|
|||||||
|
|
||||||
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
|
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
|
||||||
|
|
||||||
|
**0.23.1 (2019-09-04)**
|
||||||
|
|
||||||
|
* Fix a date parsing bug in Python versions <3.7 (#114)
|
||||||
|
|
||||||
**0.23.0 (2019-09-03)**
|
**0.23.0 (2019-09-03)**
|
||||||
|
|
||||||
* Add `toot tui`, new and improved TUI implemented written with the help of the
|
* Add `toot tui`, new and improved TUI implemented written with the help of the
|
||||||
|
3
Makefile
3
Makefile
@ -19,3 +19,6 @@ coverage:
|
|||||||
clean :
|
clean :
|
||||||
find . -name "*pyc" | xargs rm -rf $1
|
find . -name "*pyc" | xargs rm -rf $1
|
||||||
rm -rf build dist MANIFEST htmlcov deb_dist toot*.tar.gz
|
rm -rf build dist MANIFEST htmlcov deb_dist toot*.tar.gz
|
||||||
|
|
||||||
|
changelog:
|
||||||
|
./scripts/generate_changelog > CHANGELOG.md
|
||||||
|
@ -1,4 +1,9 @@
|
|||||||
|
|
||||||
|
0.23.1:
|
||||||
|
date: 2019-09-04
|
||||||
|
changes:
|
||||||
|
- "Fix a date parsing bug in Python versions <3.7 (#114)"
|
||||||
|
|
||||||
0.23.0:
|
0.23.0:
|
||||||
date: 2019-09-03
|
date: 2019-09-03
|
||||||
changes:
|
changes:
|
||||||
|
2
setup.py
2
setup.py
@ -12,7 +12,7 @@ and blocking accounts and other actions.
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='toot',
|
name='toot',
|
||||||
version='0.23.0',
|
version='0.23.1',
|
||||||
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.23.0'
|
__version__ = '0.23.1'
|
||||||
|
|
||||||
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
Block a user