From 9838a173d7ef4204f626f55b0819671473504470 Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Wed, 15 Apr 2020 20:26:53 +0200 Subject: [PATCH] Releasing 2.5.0 --- CHANGELOG.txt | 11 +++++++++++ daphne/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index d096da4..9462217 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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) ------------------ diff --git a/daphne/__init__.py b/daphne/__init__.py index ca3f13e..2c5059a 100755 --- a/daphne/__init__.py +++ b/daphne/__init__.py @@ -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