diff --git a/docs/history.rst b/docs/history.rst index 05e8d6f..5e2d300 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -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 diff --git a/sprockets/http/__init__.py b/sprockets/http/__init__.py index e82f3f5..1e0d036 100644 --- a/sprockets/http/__init__.py +++ b/sprockets/http/__init__.py @@ -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)