Bump version - toot - Unnamed repository; edit this file 'description' to name the repository.
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
 (DIR) commit a0f1bff0dd9f23c09d8042ded586738c5f7ff895
 (DIR) parent a3b207647b36b877399a0151f4faeb4de2503945
 (HTM) Author: Ivan Habunek <ivan@habunek.com>
       Date:   Fri, 21 Apr 2017 20:27:54 +0200
       
       Bump version
       
       Diffstat:
         CHANGELOG.md                        |       5 +++++
         README.rst                          |       6 ++----
         setup.py                            |       2 +-
       
       3 files changed, 8 insertions(+), 5 deletions(-)
       ---
 (DIR) diff --git 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**
 (DIR) diff --git 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 <command> -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 <command> --help
 (DIR) diff --git 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',