mirror of
https://github.com/sprockets/sprockets.http.git
synced 2024-11-14 11:19:26 +00:00
Release 2.4.0
This commit is contained in:
parent
11315f1653
commit
32be20fb0e
2 changed files with 9 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue