From b5517f616e0778bc01f09132130de52d589c990a Mon Sep 17 00:00:00 2001 From: buckket Date: Sun, 7 Feb 2016 15:18:33 +0100 Subject: [PATCH] This is 1.1.0 --- CHANGES | 26 ++++++++++++++++++++++++++ setup.py | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 CHANGES diff --git a/CHANGES b/CHANGES new file mode 100644 index 0000000..83c224a --- /dev/null +++ b/CHANGES @@ -0,0 +1,26 @@ +Changelog +========= + +These are all the changes in twtxt since the first public release. + +1.1.0 +----- + +- Ignore status updates coming form the future. +- Improved timestamp format by by removing microseconds and using local time. +- Get confirmation before overwriting an existing source. +- Allow tweet command to read from stdin. (echo "Test" | twtxt tweet) +- Allow tweet command to accept unlimited amount of arguments. (twtxt tweet This is also valid) +- Added an option to change the timeline sorting. +- Added an option to specify max wait time for HTTP requests. + + +1.0.1 +----- + +- use subprocess.call() instead of subprocess.run() which is Python 3.5 only. + +1.0.0 +----- + +Initial public release. \ No newline at end of file diff --git a/setup.py b/setup.py index 56d7321..2bca1ac 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='twtxt', - version='1.0.1', + version='1.1.0', url='https://github.com/buckket/twtxt',