summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakub Roztocil <jakub@roztocil.name>2012-06-24 16:43:03 +0200
committerJakub Roztocil <jakub@roztocil.name>2012-06-24 16:43:03 +0200
commit2f7921091c6d0dfe902dbdc29c78edab2793b1fb (patch)
tree78d670cfbe9086120eded7e0a37a149930e75407
parent180313d80c643b7f0fc1f6f09fbcc7bc9a425511 (diff)
0.2.20.2.2
-rw-r--r--README.rst5
-rw-r--r--httpie/__init__.py2
2 files changed, 5 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 3e07b89e..0ef3fe63 100644
--- a/README.rst
+++ b/README.rst
@@ -28,6 +28,7 @@ Or, you can install the **development version** directly from GitHub:
pip install -U https://github.com/jkbr/httpie/tarball/master
+HTTPie should also
Usage
-----
@@ -206,9 +207,11 @@ Before a pull requests is submitted, it's a good idea to run the existing suite
Changelog
---------
-* `0.2.2dev <https://github.com/jkbr/httpie/compare/0.2.1...master>`_
+* `0.2.3dev <https://github.com/jkbr/httpie/compare/0.2.2...master>`_
+* `0.2.2 <https://github.com/jkbr/httpie/compare/0.2.1...0.2.2>`_ (2012-06-24)
* The ``METHOD`` positional argument can now be omitted (defaults to ``GET``, or to ``POST`` with data).
* Fixed --verbose --form.
+ * Added support for `Tox <http://tox.testrun.org/>`_.
* `0.2.1 <https://github.com/jkbr/httpie/compare/0.2.0...0.2.1>`_ (2012-06-13)
* Added compatibility with ``requests-0.12.1``.
* Dropped custom JSON and HTTP lexers in favor of the ones newly included in ``pygments-1.5``.
diff --git a/httpie/__init__.py b/httpie/__init__.py
index f3919885..19319f3c 100644
--- a/httpie/__init__.py
+++ b/httpie/__init__.py
@@ -3,5 +3,5 @@ HTTPie - cURL for humans.
"""
__author__ = 'Jakub Roztocil'
-__version__ = '0.2.2dev'
+__version__ = '0.2.2'
__licence__ = 'BSD'