From 54c5c3d82b9a685064050ca2aa1501e5189e3a31 Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Tue, 24 Sep 2013 21:56:42 +0200 Subject: [PATCH] 0.7.1 --- README.rst | 8 ++++---- httpie/__init__.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 3decd149..93c8976a 100644 --- a/README.rst +++ b/README.rst @@ -1214,12 +1214,12 @@ Changelog *You can click a version name to see a diff with the previous one.* * `0.8.0-dev`_ - * Update to Requests 2.0.0 -* `0.7.0`_ (2013-09-24) +* `0.7.1`_ (2013-09-24) * Added ``--ignore-stdin``. * Added support for auth plugins. * Improved ``--help`` output. * Improved ``Content-Disposition`` parsing for ``--download`` mode. + * Update to Requests 2.0.0 * `0.6.0`_ (2013-06-03) * XML data is now formatted. * ``--session`` and ``--session-read-only`` now also accept paths to @@ -1338,7 +1338,7 @@ Changelog .. _0.5.0: https://github.com/jkbr/httpie/compare/0.4.1...0.5.0 .. _0.5.1: https://github.com/jkbr/httpie/compare/0.5.0...0.5.1 .. _0.6.0: https://github.com/jkbr/httpie/compare/0.5.1...0.6.0 -.. _0.7.0: https://github.com/jkbr/httpie/compare/0.6.0...0.7.0 -.. _0.8.0-dev: https://github.com/jkbr/httpie/compare/0.7.0...master +.. _0.7.1: https://github.com/jkbr/httpie/compare/0.6.0...0.7.1 +.. _0.8.0-dev: https://github.com/jkbr/httpie/compare/0.7.1...master .. _AUTHORS.rst: https://github.com/jkbr/httpie/blob/master/AUTHORS.rst .. _LICENSE: https://github.com/jkbr/httpie/blob/master/LICENSE diff --git a/httpie/__init__.py b/httpie/__init__.py index 592bd0ca..453ca28e 100644 --- a/httpie/__init__.py +++ b/httpie/__init__.py @@ -3,7 +3,7 @@ HTTPie - a CLI, cURL-like tool for humans. """ __author__ = 'Jakub Roztocil' -__version__ = '0.7.0' +__version__ = '0.7.1' __licence__ = 'BSD'