From fd67c42a6aa18265be64823941b1021bf9bf4278 Mon Sep 17 00:00:00 2001 From: Dave Shawley Date: Wed, 9 Oct 2019 11:05:19 -0400 Subject: [PATCH] Release 2.1.0 --- docs/history.rst | 7 ++++--- sprockets/http/__init__.py | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/history.rst b/docs/history.rst index 728e574..c332b18 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -3,8 +3,8 @@ Release History =============== -`Next Release`_ ---------------- +`2.1.0`_ (9 Oct 2019) +--------------------- - Make shutdown timings configurable. - Add :class:`sprockets.http.testing.SprocketsHttpTestCase`. - Deprecate calling :func:`sprockets.http.run` without a specified @@ -142,4 +142,5 @@ Release History .. _1.5.0: https://github.com/sprockets/sprockets.http/compare/1.4.2...1.5.0 .. _2.0.0: https://github.com/sprockets/sprockets.http/compare/1.5.0...2.0.0 .. _2.0.1: https://github.com/sprockets/sprockets.http/compare/2.0.0...2.0.1 -.. _Next Release: https://github.com/sprockets/sprockets.http/compare/2.0.1...master +.. _2.1.0: https://github.com/sprockets/sprockets.http/compare/2.0.1...2.1.0 +.. _Next Release: https://github.com/sprockets/sprockets.http/compare/2.1.0...master diff --git a/sprockets/http/__init__.py b/sprockets/http/__init__.py index e015c26..dc6ebe8 100644 --- a/sprockets/http/__init__.py +++ b/sprockets/http/__init__.py @@ -4,7 +4,7 @@ import os import warnings -version_info = (2, 0, 1) +version_info = (2, 1, 0) __version__ = '.'.join(str(v) for v in version_info) _unspecified = object()