1
0
mirror of https://github.com/ihabunek/toot.git synced 2025-02-02 15:07:51 -05:00

Bump version

This commit is contained in:
Ivan Habunek 2017-08-26 14:42:10 +02:00
parent 62c4075fe1
commit 3b13c49142
2 changed files with 16 additions and 16 deletions

View File

@ -1,76 +1,76 @@
Changelog Changelog
--------- ---------
**0.13.0 (TBA)** **0.13.0 (2017-08-26)**
* Allow passing `--instance` and `--email` to login command * Allow passing `--instance` and `--email` to login command
* Add `login_browser` command for proper two factor authentication through the browser (#19, #23) * Add `login_browser` command for proper two factor authentication through the browser (#19, #23)
**0.12.0 (2016-05-08)** **0.12.0 (2017-05-08)**
* Add option to disable ANSI color in output (#15) * Add option to disable ANSI color in output (#15)
* Return nonzero error code on error (#14) * Return nonzero error code on error (#14)
* Change license to GPLv3 * Change license to GPLv3
**0.11.0 (2016-05-07)** **0.11.0 (2017-05-07)**
* Fix error when running toot from crontab (#11) * Fix error when running toot from crontab (#11)
* Minor tweaks * Minor tweaks
**0.10.0 (2016-04-26)** **0.10.0 (2017-04-26)**
* Add commands: `block`, `unblock`, `mute`, `unmute` * Add commands: `block`, `unblock`, `mute`, `unmute`
* Internal improvements * Internal improvements
**0.9.1 (2016-04-24)** **0.9.1 (2017-04-24)**
* Fix conflict with curses package name * Fix conflict with curses package name
**0.9.0 (2016-04-21)** **0.9.0 (2017-04-21)**
* Add `whois` command * Add `whois` command
* Add experimental `curses` app for viewing the timeline * Add experimental `curses` app for viewing the timeline
**0.8.0 (2016-04-19)** **0.8.0 (2017-04-19)**
* Renamed command `2fa` to `login_2fa` **BC BREAK** * Renamed command `2fa` to `login_2fa` **BC BREAK**
* It is now possible to pipe text into `toot post` * It is now possible to pipe text into `toot post`
**0.7.0 (2016-04-18)** **0.7.0 (2017-04-18)**
* Experimental 2FA support (#3) * Experimental 2FA support (#3)
* Do not create a new application for each login * Do not create a new application for each login
* **Warning**: Due to changes in configuration format, after upgrading to this * **Warning**: Due to changes in configuration format, after upgrading to this
version, you will be required to log in to your Mastodon instance again. version, you will be required to log in to your Mastodon instance again.
**0.6.0 (2016-04-17)** **0.6.0 (2017-04-17)**
* Add `whoami` command * Add `whoami` command
* Migrate from `optparse` to `argparse` * Migrate from `optparse` to `argparse`
**0.5.0 (2016-04-16)** **0.5.0 (2017-04-16)**
* Add `search`, `follow` and `unfollow` commands * Add `search`, `follow` and `unfollow` commands
* Migrate from `optparse` to `argparse` * Migrate from `optparse` to `argparse`
**0.4.0 (2016-04-15)** **0.4.0 (2017-04-15)**
* Add `upload` command to post media * Add `upload` command to post media
* Add `--visibility` and `--media` options to `post` command * Add `--visibility` and `--media` options to `post` command
**0.3.0 (2016-04-13)** **0.3.0 (2017-04-13)**
* Add: view timeline * Add: view timeline
* Require an explicit login * Require an explicit login
**0.2.1 (2016-04-13)** **0.2.1 (2017-04-13)**
* Fix invalid requirements in setup.py * Fix invalid requirements in setup.py
**0.2.0 (2016-04-12)** **0.2.0 (2017-04-12)**
* Bugfixes * Bugfixes
**0.1.0 (2016-04-12)** **0.1.0 (2017-04-12)**
* Initial release * Initial release

View File

@ -10,7 +10,7 @@ with open("requirements.txt") as f:
setup( setup(
name='toot', name='toot',
version='0.12.0', version='0.13.0',
description='Interact with Mastodon social networks from the command line.', description='Interact with Mastodon social networks from the command line.',
long_description=long_description, long_description=long_description,
author='Ivan Habunek', author='Ivan Habunek',