From 3ac8e59dec3442a802532344ec2ced414761e2b3 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Wed, 2 Jan 2019 12:51:49 +0100 Subject: [PATCH] Bump version --- CHANGELOG.md | 2 +- setup.py | 2 +- toot/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9adef7..0ab81c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ Changelog --------- -**0.20.0 (TBA)** +**0.20.0 (2018-02-01)** * Enable interaction with instances using http instead of https (#56) * Enable proxy usage via environment variables (#47) diff --git a/setup.py b/setup.py index faef43d..d157956 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ Contains an experimental curses application for reading the timeline. setup( name='toot', - version='0.19.0', + version='0.20.0', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index 88e07f5..47ae9f1 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -2,7 +2,7 @@ from collections import namedtuple -__version__ = '0.19.0' +__version__ = '0.20.0' App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) User = namedtuple('User', ['instance', 'username', 'access_token'])