Bump version, add to changelog

pull/176/head 0.27.0
Ivan Habunek 2020-06-15 21:08:39 +02:00
rodzic ad272f521b
commit 957eec6f40
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: CDBD63C43A30BB95
4 zmienionych plików z 6 dodań i 6 usunięć

Wyświetl plik

@ -3,9 +3,9 @@ Changelog
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
**0.27.0 (TBD)**
**0.27.0 (2020-06-15)**
* Fix access to public and tag timelines when on private mastodon instances
* TUI: Fix access to public and tag timelines when on private mastodon instances
(#168)
* Add `--reverse` option to `toot notifications` (#151)
* Fix `toot timeline` to respect `--instance` option

Wyświetl plik

@ -1,7 +1,7 @@
0.27.0:
date: "TBD"
date: 2020-06-15
changes:
- "Fix access to public and tag timelines when on private mastodon instances (#168)"
- "TUI: Fix access to public and tag timelines when on private mastodon instances (#168)"
- "Add `--reverse` option to `toot notifications` (#151)"
- "Fix `toot timeline` to respect `--instance` option"
- "TUI: Add opton to pin/save tag timelines (#163, thanks @dlax)"

Wyświetl plik

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

Wyświetl plik

@ -2,7 +2,7 @@
from collections import namedtuple
__version__ = '0.26.0'
__version__ = '0.27.0'
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret'])
User = namedtuple('User', ['instance', 'username', 'access_token'])