This commit is contained in:
Jakub Roztocil 2013-02-26 14:32:47 +01:00
parent 5c6cea79a1
commit f0c42cd089
2 changed files with 5 additions and 7 deletions

View File

@ -33,7 +33,6 @@ HTTPie is written in Python, and under the hood it uses the excellent
:backlinks: none :backlinks: none
============= =============
Main Features Main Features
============= =============
@ -849,8 +848,6 @@ Streamed output by small chunks alá ``tail -f``:
$ http --stream -f -a YOUR-TWITTER-NAME https://stream.twitter.com/1/statuses/filter.json track=Apple \ $ http --stream -f -a YOUR-TWITTER-NAME https://stream.twitter.com/1/statuses/filter.json track=Apple \
| while read tweet; do echo "$tweet" | http POST example.org/tweets ; done | while read tweet; do echo "$tweet" | http POST example.org/tweets ; done
======== ========
Sessions Sessions
======== ========
@ -1084,8 +1081,9 @@ Changelog
*You can click a version name to see a diff with the previous one.* *You can click a version name to see a diff with the previous one.*
* `0.5.0-alpha`_ * `0.4.1`_ (2013-02-26)
* `0.4.0`_ * Fixed ``setup.py``.
* `0.4.0`_ (2013-02-22)
* Python 3.3 compatibility. * Python 3.3 compatibility.
* Requests >= v1.0.4 compatibility. * Requests >= v1.0.4 compatibility.
* Added support for credentials in URL. * Added support for credentials in URL.
@ -1187,8 +1185,8 @@ Changelog
.. _0.2.7: https://github.com/jkbr/httpie/compare/0.2.5...0.2.7 .. _0.2.7: https://github.com/jkbr/httpie/compare/0.2.5...0.2.7
.. _0.3.0: https://github.com/jkbr/httpie/compare/0.2.7...0.3.0 .. _0.3.0: https://github.com/jkbr/httpie/compare/0.2.7...0.3.0
.. _0.4.0: https://github.com/jkbr/httpie/compare/0.3.0...0.4.0 .. _0.4.0: https://github.com/jkbr/httpie/compare/0.3.0...0.4.0
.. _0.4.1: https://github.com/jkbr/httpie/compare/0.4.0...0.4.1
.. _0.5.0-alpha: https://github.com/jkbr/httpie/compare/0.4.0...master .. _0.5.0-alpha: https://github.com/jkbr/httpie/compare/0.4.0...master
.. _stable version: https://github.com/jkbr/httpie/tree/0.3.0#readme .. _stable version: https://github.com/jkbr/httpie/tree/0.3.0#readme
.. _AUTHORS.rst: https://github.com/jkbr/httpie/blob/master/AUTHORS.rst .. _AUTHORS.rst: https://github.com/jkbr/httpie/blob/master/AUTHORS.rst
.. _LICENSE: https://github.com/jkbr/httpie/blob/master/LICENSE .. _LICENSE: https://github.com/jkbr/httpie/blob/master/LICENSE

View File

@ -3,7 +3,7 @@ HTTPie - a CLI, cURL-like tool for humans.
""" """
__author__ = 'Jakub Roztocil' __author__ = 'Jakub Roztocil'
__version__ = '0.4.0' __version__ = '0.4.1'
__licence__ = 'BSD' __licence__ = 'BSD'