From a0f1bff0dd9f23c09d8042ded586738c5f7ff895 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Fri, 21 Apr 2017 20:27:54 +0200 Subject: [PATCH] Bump version --- CHANGELOG.md | 5 +++++ README.rst | 6 ++---- setup.py | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f09a48b..5f96214 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Changelog --------- +**0.9.0 (2016-04-21)** + +* Add `whois` command +* Add experimental `curses` app for viewing the timeline + **0.8.0 (2016-04-19)** * Renamed command `2fa` to `login_2fa` **BC BREAK** diff --git a/README.rst b/README.rst index c361bed..e16e227 100644 --- a/README.rst +++ b/README.rst @@ -14,10 +14,6 @@ Interact with Mastodon social networks from the command line. :target: https://pypi.python.org/pypi/toot -.. warning:: - Upgrading to version ``0.7.0`` will require you to log in to your chosen Mastodon instance again. - - Installation ------------ @@ -46,12 +42,14 @@ Running ``toot -h`` shows the documentation for the given command. toot logout Log out, delete stored access keys toot auth Show stored credentials toot whoami Display logged in user details + toot whois Display user details toot post Post a status text to your timeline toot upload Upload an image or video file toot search Search for users or hashtags toot follow Follow an account toot unfollow Unfollow an account toot timeline Show recent items in your public timeline + toot curses An experimental timeline app. To get help for each command run: toot --help diff --git a/setup.py b/setup.py index 3863e4e..09f98b8 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ with open("README.rst") as readme: setup( name='toot', - version='0.8.0', + version='0.9.0', description='Interact with Mastodon social networks from the command line.', long_description=long_description, author='Ivan Habunek',