diff --git a/docs/history.rst b/docs/history.rst index e8fb7af..3c4426d 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -2,23 +2,23 @@ Release History =============== -`Next Release`_ ---------------- +`1.4.0`_ (3 Nov 2016) +--------------------- - Separate the concerns of running the application from the callback chains. The latter has been refactored into :mod:`sprockets.http.app`. This change is completely invisible to the outside world. - Officially deprecated the ``runner_callbacks`` application attribute. -`1.3.3`_ (20 Sept) ------------------- +`1.3.3`_ (20 Sept 2016) +----------------------- - Include correlation-id in the structured log data when logging. -`1.3.2`_ (19 Sept) ------------------- +`1.3.2`_ (19 Sept 2016) +----------------------- - Include the service and environment (if set) in the structured log data. -`1.3.1`_ (16 Sept) ------------------- +`1.3.1`_ (16 Sept 2016) +----------------------- - Change the non-DEBUG log format to include structured data and a leading first byte for log level. `1.3.0`_ (11 Mar 2016) @@ -100,4 +100,5 @@ Release History .. _1.3.1: https://github.com/sprockets/sprockets.http/compare/1.3.0...1.3.1 .. _1.3.2: https://github.com/sprockets/sprockets.http/compare/1.3.1...1.3.2 .. _1.3.3: https://github.com/sprockets/sprockets.http/compare/1.3.2...1.3.3 -.. _Next Release: https://github.com/sprockets/sprockets.http/compare/1.3.3...master +.. _1.4.0: https://github.com/sprockets/sprockets.http/compare/1.3.3...1.4.0 +.. _Next Release: https://github.com/sprockets/sprockets.http/compare/1.4.0...master diff --git a/sprockets/http/__init__.py b/sprockets/http/__init__.py index 3b60c0e..95a91be 100644 --- a/sprockets/http/__init__.py +++ b/sprockets/http/__init__.py @@ -3,7 +3,7 @@ import logging.config import os -version_info = (1, 3, 3) +version_info = (1, 4, 0) __version__ = '.'.join(str(v) for v in version_info)