Bump version, update changelog

This commit is contained in:
Ivan Habunek 2022-12-07 15:09:09 +01:00
parent 40e7a6f3a1
commit f9fef1927c
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95
3 changed files with 6 additions and 3 deletions

View File

@ -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

View File

@ -12,7 +12,7 @@ and blocking accounts and other actions.
setup(
name='toot',
version='0.30.1',
version='0.31.0',
description='Mastodon CLI client',
long_description=long_description.strip(),
author='Ivan Habunek',

View File

@ -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'])