Metadata bumps for 1.4.0

This commit is contained in:
Dave Shawley 2016-11-03 07:53:04 -04:00
parent 53f30b9476
commit 677e0ba6c0
2 changed files with 11 additions and 10 deletions

View file

@ -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

View file

@ -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)