Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ihabunek committed Sep 4, 2019
1 parent e310482 commit 7309e5b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ Changelog

<!-- 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)**

* Add `toot tui`, new and improved TUI implemented written with the help of the
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ coverage:
clean :
find . -name "*pyc" | xargs rm -rf $1
rm -rf build dist MANIFEST htmlcov deb_dist toot*.tar.gz

changelog:
./scripts/generate_changelog > CHANGELOG.md
5 changes: 5 additions & 0 deletions changelog.yaml
Original file line number Diff line number Diff line change
@@ -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:
date: 2019-09-03
changes:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name='toot',
version='0.23.0',
version='0.23.1',
description='Mastodon CLI client',
long_description=long_description.strip(),
author='Ivan Habunek',
Expand Down
2 changes: 1 addition & 1 deletion toot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from collections import namedtuple

__version__ = '0.23.0'
__version__ = '0.23.1'

App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
User = namedtuple('User', ['instance', 'username', 'access_token'])
Expand Down

0 comments on commit 7309e5b

Please sign in to comment.