Prepare release 0.28.0

This commit is contained in:
Ivan Habunek 2021-08-28 21:19:43 +02:00
parent 54ceefccdc
commit dad08d5b40
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95
5 changed files with 21 additions and 3 deletions

View File

@ -3,6 +3,23 @@ Changelog
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
**0.28.0 (2021-08-28)**
* **BREAKING**: Removed `toot curses`, deprecated since 2019-09-03
* Add `--scheduled-at` option to `toot post`, allows scheduling toots
* Add `--description` option to `toot post`, for adding descriptions to media
attachments (thanks @ansuz)
* Add `--mentions` option to `toot notifications` to show only mentions (thanks
@alexwennerberg)
* Add `--content-type` option to `toot post` to allow specifying mime type, used
on Pleroma (thanks Sandra Snan)
* Allow post IDs to be strings as used on Pleroma (thanks Sandra Snan)
* TUI: Allow posts longer than 500 characters if so configured on the server
(thanks Sandra Snan)
* Allow piping the password to login_cli for testing purposes (thanks
@NinjaTrappeur)
* Disable paging timeline when output is piped (thanks @stacyharper)
**0.27.0 (2020-06-15)**
* TUI: Fix access to public and tag timelines when on private mastodon instances

View File

@ -1,5 +1,5 @@
0.28.0:
date: TBA
date: 2021-08-28
changes:
- "**BREAKING**: Removed `toot curses`, deprecated since 2019-09-03"
- "Add `--scheduled-at` option to `toot post`, allows scheduling toots"

View File

@ -7,3 +7,4 @@ sphinx-autobuild
stdeb
twine
wheel
pyyaml

View File

@ -12,7 +12,7 @@ and blocking accounts and other actions.
setup(
name='toot',
version='0.27.0',
version='0.28.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.27.0'
__version__ = '0.28.0'
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
User = namedtuple('User', ['instance', 'username', 'access_token'])