2.1.1: Fix testing with on stop methods.

This commit is contained in:
Dave Shawley 2020-02-19 10:14:08 -05:00
parent 07e6f0975a
commit 46d0326954
3 changed files with 6 additions and 5 deletions

View file

@ -1,4 +1,4 @@
Copyright (c) 2015-2019 AWeber Communications Copyright (c) 2015-2020 AWeber Communications
All rights reserved. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, Redistribution and use in source and binary forms, with or without modification,

View file

@ -3,8 +3,8 @@
Release History Release History
=============== ===============
`Next Release`_ `2.1.1`_ (19 Feb 2020)
--------------- ----------------------
- :meth:`sprockets.http.app.CallbackManager.stop` no longer requires the - :meth:`sprockets.http.app.CallbackManager.stop` no longer requires the
event loop to be running (fixes `#34`_) 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.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.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 .. _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

View file

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