From 957eec6f40512c1c0786969fda895bad58720943 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Mon, 15 Jun 2020 21:08:39 +0200 Subject: [PATCH] Bump version, add to changelog --- CHANGELOG.md | 4 ++-- changelog.yaml | 4 ++-- setup.py | 2 +- toot/__init__.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e573cc..e348107 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,9 +3,9 @@ Changelog -**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 diff --git a/changelog.yaml b/changelog.yaml index d04fab2..ee966d6 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -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)" diff --git a/setup.py b/setup.py index 7e2abc9..9143d57 100644 --- a/setup.py +++ b/setup.py @@ -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', diff --git a/toot/__init__.py b/toot/__init__.py index a3a7eee..8c1fa62 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -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'])