Bumped version and change notes for 3.0.1 release.

This commit is contained in:
Carlton Gibson 2020-11-12 20:28:42 +01:00 committed by Carlton Gibson
parent aae0870971
commit aac4708a61
2 changed files with 13 additions and 1 deletions

View File

@ -1,3 +1,10 @@
3.0.1 (2020-11-12)
------------------
* Fixed a bug where ``asyncio.CancelledError`` was not correctly handled on
Python 3.8+, resulting in incorrect protocol application cleanup.
3.0.0 (2020-10-28) 3.0.0 (2020-10-28)
------------------ ------------------
@ -12,6 +19,7 @@
* Dropped support for Python 3.5. * Dropped support for Python 3.5.
2.5.0 (2020-04-15) 2.5.0 (2020-04-15)
------------------ ------------------
@ -23,6 +31,7 @@
``lock`` argument to ``__init__()``. This is expected to be an instance of ``lock`` argument to ``__init__()``. This is expected to be an instance of
``multiprocessing.Lock``. ``multiprocessing.Lock``.
2.4.1 (2019-12-18) 2.4.1 (2019-12-18)
------------------ ------------------
@ -30,6 +39,7 @@
3.0's ``async_unsafe()`` decorator in threaded contexts, such as using the 3.0's ``async_unsafe()`` decorator in threaded contexts, such as using the
auto-reloader. auto-reloader.
2.4.0 (2019-11-20) 2.4.0 (2019-11-20)
------------------ ------------------
@ -47,11 +57,13 @@
* Adds missing LICENSE to distribution. * Adds missing LICENSE to distribution.
2.3.0 (2019-04-09) 2.3.0 (2019-04-09)
------------------ ------------------
* Added support for ASGI v3. * Added support for ASGI v3.
2.2.5 (2019-01-31) 2.2.5 (2019-01-31)
------------------ ------------------

View File

@ -1,6 +1,6 @@
import sys import sys
__version__ = "3.0.0" __version__ = "3.0.1"
# Windows on Python 3.8+ uses ProactorEventLoop, which is not compatible with # Windows on Python 3.8+ uses ProactorEventLoop, which is not compatible with