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 `_ +* `0.2.3dev `_ +* `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 `_. * `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'