diff --git a/README.rst b/README.rst index 452e0b9d..5931b66f 100644 --- a/README.rst +++ b/README.rst @@ -188,7 +188,11 @@ Contributors Changelog --------- -* `New in development version `_ +* `New in development version `_ +* 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``. + * `Complete changelog `_ * 0.2.0 (2012-04-25) * Added Python 3 support. * Added the ability to print the HTTP request as well as the response (see ``--print`` and ``--verbose``). @@ -198,5 +202,4 @@ Changelog * Added support for field name escaping. * Many bug fixes. * `Complete changelog `_ - * `0.1.6 `_ (2012-03-04) diff --git a/httpie/__init__.py b/httpie/__init__.py index 85b72483..22ff3fdd 100644 --- a/httpie/__init__.py +++ b/httpie/__init__.py @@ -3,5 +3,5 @@ HTTPie - cURL for humans. """ __author__ = 'Jakub Roztocil' -__version__ = '0.2.1dev' +__version__ = '0.2.1' __licence__ = 'BSD'