From 753a8d04e4499505140a67442ae3e21f608b377f Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Sat, 7 Feb 2015 17:04:13 +0100 Subject: [PATCH] v0.9.1 --- README.rst | 7 +++++++ httpie/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 0fa40b39..c9db1149 100644 --- a/README.rst +++ b/README.rst @@ -1314,6 +1314,12 @@ Changelog *You can click a version name to see a diff with the previous one.* * `1.0.0-dev`_ +* `0.9.1`_ (2015-02-07) + * Added support for Requests transport adapter plugins + to enable plugin-provided features such as + `unix socket `_ + communication and + `HTTP/2 `_. * `0.9.0`_ (2015-01-31) * Added ``--cert`` and ``--cert-key`` parameters to specify a client side certificate and private key for SSL @@ -1458,6 +1464,7 @@ Changelog .. _0.7.1: https://github.com/jakubroztocil/httpie/compare/0.6.0...0.7.1 .. _0.8.0: https://github.com/jakubroztocil/httpie/compare/0.7.1...0.8.0 .. _0.9.0: https://github.com/jakubroztocil/httpie/compare/0.8.0...0.9.0 +.. _0.9.1: https://github.com/jakubroztocil/httpie/compare/0.9.0...0.9.1 .. _1.0.0-dev: https://github.com/jakubroztocil/httpie/compare/0.9.0...master .. _LICENSE: https://github.com/jakubroztocil/httpie/blob/master/LICENSE .. _Tox: http://tox.testrun.org diff --git a/httpie/__init__.py b/httpie/__init__.py index 7ae07c9e..ace69851 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__ = '1.0.0-dev' +__version__ = '0.9.1' __licence__ = 'BSD'