Bump version

This commit is contained in:
Ivan Habunek 2019-09-03 16:12:16 +02:00
parent 20a8612232
commit 70faf47c91
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95
4 changed files with 7 additions and 6 deletions

View File

@ -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

View File

@ -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

View File

@ -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',

View File

@ -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'])