mirror of
https://github.com/ihabunek/toot.git
synced 2025-02-02 15:07:51 -05:00
Prepare release 0.28.0
This commit is contained in:
parent
54ceefccdc
commit
dad08d5b40
17
CHANGELOG.md
17
CHANGELOG.md
@ -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
|
||||
|
@ -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"
|
||||
|
@ -7,3 +7,4 @@ sphinx-autobuild
|
||||
stdeb
|
||||
twine
|
||||
wheel
|
||||
pyyaml
|
||||
|
2
setup.py
2
setup.py
@ -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',
|
||||
|
@ -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'])
|
||||
|
Loading…
x
Reference in New Issue
Block a user