Skip to content

Commit

Permalink
Bump version, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ihabunek committed Dec 7, 2022
1 parent 40e7a6f commit f9fef19
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion changelog.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
0.31.0:
date: "TBA"
date: 2022-12-07
changes:
- "**BREAKING:** Require Python 3.6+"
- "Add `post --scheduled-in` option for easier scheduling"
- "Fix posting toots to Pleroma"
- "Improved testing"

0.30.1:
date: 2022-11-30
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.30.1',
version='0.31.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.30.1'
__version__ = '0.31.0'

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

0 comments on commit f9fef19

Please sign in to comment.