Releasing 2.5.0

This commit is contained in:
Carlton Gibson 2020-04-15 20:26:53 +02:00
parent c3b88e5639
commit 9838a173d7
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,14 @@
2.5.0 (2020-04-15)
------------------
* Fixes compatability for twisted when running Python 3.8+ on Windows, by
setting ``asyncio.WindowsSelectorEventLoopPolicy`` as the event loop policy
in this case.
* The internal ``daphne.testing.TestApplication`` now requires an addition
``lock`` argument to ``__init__()``. This is expected to be an instance of
``multiprocessing.Lock``.
2.4.1 (2019-12-18)
------------------

View File

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