Release 2.2.0

This commit is contained in:
Andrew Rabert 2020-09-28 09:20:08 -04:00
parent 9fdb071247
commit 62dd020d42
2 changed files with 7 additions and 2 deletions

View file

@ -3,6 +3,10 @@
Release History
===============
`2.2.0`_ (28 Sep 2020)
----------------------
- Change xheaders option to default to ``True``
`2.1.2`_ (15 Sep 2020)
----------------------
- Updated to support Python 3.9. ``asyncio.Task.all_tasks`` was removed
@ -159,4 +163,5 @@ Release History
.. _2.1.0: https://github.com/sprockets/sprockets.http/compare/2.0.1...2.1.0
.. _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
.. _Next Release: https://github.com/sprockets/sprockets.http/compare/2.1.2...master
.. _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

View file

@ -4,7 +4,7 @@ import os
import warnings
version_info = (2, 1, 2)
version_info = (2, 2, 0)
__version__ = '.'.join(str(v) for v in version_info)
_unspecified = object()