Bump version - toot - Unnamed repository; edit this file 'description' to name the repository.
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) LICENSE
---
(DIR) commit cec716553055adc9b3d0965e0e124cdd3d11e678
(DIR) parent 373f26424d002b22c8fa7fe7eabc38e13275d1fc
(HTM) Author: Ivan Habunek <ivan@habunek.com>
Date: Wed, 19 Apr 2017 14:51:30 +0200
Bump version
Diffstat:
CHANGELOG.md | 5 +++++
README.rst | 7 +++++++
setup.py | 2 +-
3 files changed, 13 insertions(+), 1 deletion(-)
---
(DIR) diff --git a/CHANGELOG.md b/CHANGELOG.md
@@ -1,6 +1,11 @@
Changelog
---------
+**0.8.0 (2016-04-19)**
+
+* Renamed command `2fa` to `login_2fa` **BC BREAK**
+* It is now possible to pipe text into `toot post`
+
**0.7.0 (2016-04-18)**
* Experimental 2FA support (#3)
(DIR) diff --git a/README.rst b/README.rst
@@ -58,6 +58,13 @@ Running ``toot <command> -h`` shows the documentation for the given command.
https://github.com/ihabunek/toot
+It is possible to pipe status text into `toot post`, for example:
+
+.. code-block::
+
+ echo "Text to post" | toot post
+ cat mypost.txt | toot post
+
Authentication
--------------
(DIR) diff --git a/setup.py b/setup.py
@@ -7,7 +7,7 @@ with open("README.rst") as readme:
setup(
name='toot',
- version='0.7.0',
+ version='0.8.0',
description='Interact with Mastodon social networks from the command line.',
long_description=long_description,
author='Ivan Habunek',