Skip to content

Commit

Permalink
Bump version, add to changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ihabunek committed Jun 15, 2020
1 parent ad272f5 commit 957eec6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions changelog.yaml
Original file line number Diff line number Diff line change
@@ -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)"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name='toot',
version='0.26.0',
version='0.27.0',
description='Mastodon CLI client',
long_description=long_description.strip(),
author='Ivan Habunek',
Expand Down
2 changes: 1 addition & 1 deletion toot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'])
Expand Down

0 comments on commit 957eec6

Please sign in to comment.