From 62dd020d42c1e3386bc434908af9852d32e7657e Mon Sep 17 00:00:00 2001 From: Andrew Rabert Date: Mon, 28 Sep 2020 09:20:08 -0400 Subject: [PATCH] Release 2.2.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 ff3c900..a8818b8 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -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 diff --git a/sprockets/http/__init__.py b/sprockets/http/__init__.py index 435a2dc..1de937f 100644 --- a/sprockets/http/__init__.py +++ b/sprockets/http/__init__.py @@ -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()