diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 101e69f0..fa1f8769 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -9,6 +9,10 @@ This project adheres to `Semantic Versioning `_. `1.0.0-dev`_ (Unreleased) ------------------------- + +`0.9.4`_ (2016-07-01) +--------------------- + * Added ``Content-Type`` of files uploaded in ``multipart/form-data`` requests * Added ``--ssl=`` to specify the desired SSL/TLS protocol version to use for HTTPS requests. @@ -28,8 +32,8 @@ This project adheres to `Semantic Versioning `_. * Improved ``--debug`` output * Fixed ``--session`` when used with ``--download`` * Fixed ``--download`` to trim too long filenames before saving the file -* Fixed handling of ``Content-Type`` with multiple ``+subtype`` parts -* Removed XML formatting as the implementation suffered from multiple issues +* Fixed the handling of ``Content-Type`` with multiple ``+subtype`` parts +* Removed the XML formatter as the implementation suffered from multiple issues @@ -284,4 +288,5 @@ This project adheres to `Semantic Versioning `_. .. _0.9.1: https://github.com/jkbrzt/httpie/compare/0.9.0...0.9.1 .. _0.9.2: https://github.com/jkbrzt/httpie/compare/0.9.1...0.9.2 .. _0.9.3: https://github.com/jkbrzt/httpie/compare/0.9.2...0.9.3 -.. _1.0.0-dev: https://github.com/jkbrzt/httpie/compare/0.9.3...master +.. _0.9.4: https://github.com/jkbrzt/httpie/compare/0.9.3...0.9.4 +.. _1.0.0-dev: https://github.com/jkbrzt/httpie/compare/0.9.4...master diff --git a/httpie/__init__.py b/httpie/__init__.py index 6c7fe03b..18b8f987 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.4' __licence__ = 'BSD'