From 46d0326954bf212f44202ae14a875b652443223d Mon Sep 17 00:00:00 2001 From: Dave Shawley Date: Wed, 19 Feb 2020 10:14:08 -0500 Subject: [PATCH] 2.1.1: Fix testing with on stop methods. --- LICENSE | 2 +- docs/history.rst | 7 ++++--- sprockets/http/__init__.py | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/LICENSE b/LICENSE index 68ef929..0f39f88 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2015-2019 AWeber Communications +Copyright (c) 2015-2020 AWeber Communications All rights reserved. Redistribution and use in source and binary forms, with or without modification, diff --git a/docs/history.rst b/docs/history.rst index b82b314..7c918d8 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -3,8 +3,8 @@ Release History =============== -`Next Release`_ ---------------- +`2.1.1`_ (19 Feb 2020) +---------------------- - :meth:`sprockets.http.app.CallbackManager.stop` no longer requires the event loop to be running (fixes `#34`_) @@ -150,4 +150,5 @@ Release History .. _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 .. _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 +.. _2.1.1: https://github.com/sprockets/sprockets.http/compare/2.1.0...2.1.1 +.. _Next Release: https://github.com/sprockets/sprockets.http/compare/2.1.1...master diff --git a/sprockets/http/__init__.py b/sprockets/http/__init__.py index dc6ebe8..e30a1bd 100644 --- a/sprockets/http/__init__.py +++ b/sprockets/http/__init__.py @@ -4,7 +4,7 @@ import os import warnings -version_info = (2, 1, 0) +version_info = (2, 1, 1) __version__ = '.'.join(str(v) for v in version_info) _unspecified = object()