-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
|
||
setup( | ||
name='twtxt', | ||
version='1.0.1', | ||
version='1.1.0', | ||
|
||
url='https://github.com/buckket/twtxt', | ||
|
||
|