Skip to content

Commit

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

<!-- Do not edit. This file is automatically generated from changelog.yaml.-->

**0.24.0 (2019-09-18)**

* On Windows store config files under %APPDATA%
* CLI: Don't use ANSI colors if not supported by terminal or when not in a tty
* TUI: Implement deleting own status messages
* TUI: Improve rendering of reblogged statuses (thanks @dlax)
* TUI: Set urwid encoding to UTF-8 (thanks @bearzk)

**0.23.1 (2019-09-04)**

* Fix a date parsing bug in Python versions <3.7 (#114)
Expand Down
6 changes: 4 additions & 2 deletions changelog.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@

0.24.0:
date: TBA
date: 2019-09-18
changes:
- "On Windows store config files under %APPDATA%"
- "CLI: Don't use ANSI colors if not supported by terminal or when not in a tty"
- "TUI: Implement deleting own status messages"
- "On Windows store config files under %APPDATA%"
- "TUI: Improve rendering of reblogged statuses (thanks @dlax)"
- "TUI: Set urwid encoding to UTF-8 (thanks @bearzk)"

0.23.1:
date: 2019-09-04
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.1',
version='0.24.0',
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.1'
__version__ = '0.24.0'

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

0 comments on commit bc6e433

Please sign in to comment.