Metadata bumps for 1.4.2.

This commit is contained in:
Brian Korty 2018-01-25 09:36:49 -05:00
parent 9efd85f197
commit a3e7836acd
2 changed files with 7 additions and 2 deletions

View file

@ -3,6 +3,10 @@
Release History
===============
`1.4.2`_ (25 Jan 2018)
---------------------
- Allow max_body_size and max_buffer_size to be specified on the http server.
`1.4.1`_ (3 Jan 2018)
---------------------
- Workaround https://bitbucket.org/birkenfeld/sphinx-contrib/issues/184/
@ -108,4 +112,5 @@ Release History
.. _1.3.3: https://github.com/sprockets/sprockets.http/compare/1.3.2...1.3.3
.. _1.4.0: https://github.com/sprockets/sprockets.http/compare/1.3.3...1.4.0
.. _1.4.1: https://github.com/sprockets/sprockets.http/compare/1.4.0...1.4.1
.. _Next Release: https://github.com/sprockets/sprockets.http/compare/1.4.1...master
.. _1.4.2: https://github.com/sprockets/sprockets.http/compare/1.4.1...1.4.2
.. _Next Release: https://github.com/sprockets/sprockets.http/compare/1.4.2...master

View file

@ -3,7 +3,7 @@ import logging.config
import os
version_info = (1, 4, 1)
version_info = (1, 4, 2)
__version__ = '.'.join(str(v) for v in version_info)