Bump version - toot - Unnamed repository; edit this file 'description' to name … | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
commit 27df352519edc39a4fc3af16540c4b5c14870171 | |
parent db4e1d59f3cae8505805a8567bd6d7e72c6b6f3b | |
Author: Ivan Habunek <[email protected]> | |
Date: Mon, 15 Jan 2018 13:36:40 +0100 | |
Bump version | |
Diffstat: | |
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 | |
@@ -1,7 +1,7 @@ | |
Changelog | |
--------- | |
-**0.17.0 (TBA)** | |
+**0.17.0 (2017-01-15)** | |
* Changed configuration file format to allow switching between multiple logged | |
in accounts (#32) | |
diff --git a/setup.py b/setup.py | |
@@ -11,7 +11,7 @@ Contains an experimental curses application for reading the t… | |
setup( | |
name='toot', | |
- version='0.16.2', | |
+ version='0.17.0', | |
description='Mastodon CLI client', | |
long_description=long_description.strip(), | |
author='Ivan Habunek', | |
diff --git a/toot/__init__.py b/toot/__init__.py | |
@@ -2,7 +2,7 @@ | |
from collections import namedtuple | |
-__version__ = '0.16.2' | |
+__version__ = '0.17.0' | |
App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) | |
User = namedtuple('User', ['instance', 'username', 'access_token']) |