diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c919a4b7..f80a03fb 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,8 +6,8 @@ This document records all notable changes to `HTTPie `_. This project adheres to `Semantic Versioning `_. -`1.0.0-dev`_ (Unreleased) -------------------------- +`0.9.7`_ (2016-12-08) +--------------------- * Extended auth plugin API. * Added support for ``curses``-less Python installations. @@ -317,4 +317,5 @@ This project adheres to `Semantic Versioning `_. .. _0.9.3: https://github.com/jkbrzt/httpie/compare/0.9.2...0.9.3 .. _0.9.4: https://github.com/jkbrzt/httpie/compare/0.9.3...0.9.4 .. _0.9.6: https://github.com/jkbrzt/httpie/compare/0.9.4...0.9.6 -.. _1.0.0-dev: https://github.com/jkbrzt/httpie/compare/0.9.6...master +.. _0.9.7: https://github.com/jkbrzt/httpie/compare/0.9.6...0.9.7 +.. _1.0.0-dev: https://github.com/jkbrzt/httpie/compare/0.9.7...master diff --git a/httpie/__init__.py b/httpie/__init__.py index 05b4cc0e..bc78c7e7 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.7' __licence__ = 'BSD' @@ -11,6 +11,7 @@ class ExitStatus: """Exit status code constants.""" OK = 0 ERROR = 1 + PLUGIN_ERROR = 7 # 128+2 SIGINT ERROR_CTRL_C = 130