Bump version, add changelog

This commit is contained in:
Ivan Habunek 2023-03-01 08:09:10 +01:00
parent 882b6c4d0a
commit 57824058e0
No known key found for this signature in database
GPG Key ID: F5F0623FF5EBCB3D
4 changed files with 18 additions and 2 deletions

View File

@ -3,6 +3,14 @@ Changelog
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
**0.35.0 (2023-03-01)**
* Save toot contents when using --editor so it's recoverable if posting fails
(#311)
* TUI: Add voting on polls (thanks Dan Schwarz)
* TUI: Add following/blocking/muting accounts (thanks Dan Schwarz)
* TUI: Add notifications timeline (thanks Dan Schwarz)
**0.34.1 (2023-02-20)**
* TUI: Fix bug where TUI would break on older Mastodon instances (#309)

View File

@ -1,3 +1,11 @@
0.35.0:
date: 2023-03-01
changes:
- "Save toot contents when using --editor so it's recoverable if posting fails (#311)"
- "TUI: Add voting on polls (thanks Dan Schwarz)"
- "TUI: Add following/blocking/muting accounts (thanks Dan Schwarz)"
- "TUI: Add notifications timeline (thanks Dan Schwarz)"
0.34.1:
date: 2023-02-20
changes:

View File

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

View File

@ -1,6 +1,6 @@
from collections import namedtuple
__version__ = '0.34.1'
__version__ = '0.35.0'
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
User = namedtuple('User', ['instance', 'username', 'access_token'])