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