mirror of
https://github.com/sprockets/sprockets.http.git
synced 2024-11-10 19:29:27 +00:00
2.1.1: Fix testing with on stop methods.
This commit is contained in:
parent
07e6f0975a
commit
46d0326954
3 changed files with 6 additions and 5 deletions
2
LICENSE
2
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,
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue