diff --git a/docs/history.rst b/docs/history.rst index b5c3889..53e0fba 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -3,6 +3,11 @@ Release History =============== +`2.4.0`_ (16 Mar 2022) +---------------------- +- Add support for Python 3.10 +- Change the default access log format + `2.3.0`_ (03 Feb 2022) ---------------------- - Added optional Sentry integration @@ -168,4 +173,6 @@ Release History .. _2.1.1: https://github.com/sprockets/sprockets.http/compare/2.1.0...2.1.1 .. _2.1.2: https://github.com/sprockets/sprockets.http/compare/2.1.1...2.1.2 .. _2.2.0: https://github.com/sprockets/sprockets.http/compare/2.1.2...2.2.0 -.. _Next Release: https://github.com/sprockets/sprockets.http/compare/2.2.0...master +.. _2.3.0: https://github.com/sprockets/sprockets.http/compare/2.2.0...2.3.0 +.. _2.4.0: https://github.com/sprockets/sprockets.http/compare/2.3.0...2.4.0 +.. _Next Release: https://github.com/sprockets/sprockets.http/compare/2.4.0...master diff --git a/sprockets/http/__init__.py b/sprockets/http/__init__.py index cdef5cf..2408076 100644 --- a/sprockets/http/__init__.py +++ b/sprockets/http/__init__.py @@ -18,7 +18,7 @@ except ModuleNotFoundError: pass -version_info = (2, 3, 0) +version_info = (2, 4, 0) __version__ = '.'.join(str(v) for v in version_info) _unspecified = object()