From 1b603b5d7a64b1e21ec9e5f46184bebdb36e62d8 Mon Sep 17 00:00:00 2001 From: Andrew Rabert Date: Thu, 26 May 2022 15:06:41 -0400 Subject: [PATCH] Release 2.5.0 --- docs/history.rst | 7 ++++++- sprockets/http/__init__.py | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/history.rst b/docs/history.rst index 53e0fba..06c1408 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -3,6 +3,10 @@ Release History =============== +`2.5.0`_ (26 May 2022) +---------------------- +- Add customization of **Server** header + `2.4.0`_ (16 Mar 2022) ---------------------- - Add support for Python 3.10 @@ -175,4 +179,5 @@ Release History .. _2.2.0: https://github.com/sprockets/sprockets.http/compare/2.1.2...2.2.0 .. _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 +.. _2.5.0: https://github.com/sprockets/sprockets.http/compare/2.4.0...2.5.0 +.. _Next Release: https://github.com/sprockets/sprockets.http/compare/2.5.0...master diff --git a/sprockets/http/__init__.py b/sprockets/http/__init__.py index 2408076..8dbfed6 100644 --- a/sprockets/http/__init__.py +++ b/sprockets/http/__init__.py @@ -18,7 +18,7 @@ except ModuleNotFoundError: pass -version_info = (2, 4, 0) +version_info = (2, 5, 0) __version__ = '.'.join(str(v) for v in version_info) _unspecified = object()