Release 2.5.0

This commit is contained in:
Andrew Rabert 2022-05-26 15:06:41 -04:00
parent ef3baa194a
commit 1b603b5d7a
2 changed files with 7 additions and 2 deletions

View file

@ -3,6 +3,10 @@
Release History Release History
=============== ===============
`2.5.0`_ (26 May 2022)
----------------------
- Add customization of **Server** header
`2.4.0`_ (16 Mar 2022) `2.4.0`_ (16 Mar 2022)
---------------------- ----------------------
- Add support for Python 3.10 - 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.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.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 .. _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

View file

@ -18,7 +18,7 @@ except ModuleNotFoundError:
pass pass
version_info = (2, 4, 0) version_info = (2, 5, 0)
__version__ = '.'.join(str(v) for v in version_info) __version__ = '.'.join(str(v) for v in version_info)
_unspecified = object() _unspecified = object()