diff --git a/README.rst b/README.rst index 69d91e1..68b374c 100644 --- a/README.rst +++ b/README.rst @@ -4,7 +4,7 @@ Toot - a Mastodon CLI client .. image:: https://raw.githubusercontent.com/ihabunek/toot/master/trumpet.png -Interact with Mastodon social network from the command line. +Toot is a CLI and TUI tool for interacting with Mastodon instances from the command line. .. image:: https://img.shields.io/travis/ihabunek/toot.svg?maxAge=3600&style=flat-square :target: https://travis-ci.org/ihabunek/toot diff --git a/docs/index.rst b/docs/index.rst index f436f79..c7361ab 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -3,7 +3,7 @@ toot - Mastodon CLI client .. image:: _static/trumpet.png -toot is a commandline tool for interacting with Mastodon social networks. +Toot is a CLI and TUI tool for interacting with Mastodon instances from the command line. .. image:: https://img.shields.io/travis/ihabunek/toot.svg?maxAge=3600&style=flat-square :target: https://travis-ci.org/ihabunek/toot diff --git a/setup.py b/setup.py index ba747b5..0f23456 100644 --- a/setup.py +++ b/setup.py @@ -3,15 +3,16 @@ from setuptools import setup long_description = """ -toot is a commandline tool for interacting with Mastodon social networks. +Toot is a CLI and TUI tool for interacting with Mastodon instances from the +command line. + Allows posting text and media to the timeline, searching, following, muting and blocking accounts and other actions. -Includes a curses-based terminal user interface (TUI). """ setup( name='toot', - version='0.22.0', + version='0.23.0', description='Mastodon CLI client', long_description=long_description.strip(), author='Ivan Habunek', diff --git a/toot/__init__.py b/toot/__init__.py index 6e046ec..012a678 100644 --- a/toot/__init__.py +++ b/toot/__init__.py @@ -2,7 +2,7 @@ from collections import namedtuple -__version__ = '0.22.0' +__version__ = '0.23.0' App = namedtuple('App', ['instance', 'base_url', 'client_id', 'client_secret']) User = namedtuple('User', ['instance', 'username', 'access_token'])