diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 17c8485..d096da4 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,10 @@ +2.4.1 (2019-12-18) +------------------ + +* Avoids Twisted using the default event loop, for compatibility with Django + 3.0's ``async_unsafe()`` decorator in threaded contexts, such as using the + auto-reloader. + 2.4.0 (2019-11-20) ------------------ diff --git a/daphne/__init__.py b/daphne/__init__.py index 3d67cd6..54499df 100755 --- a/daphne/__init__.py +++ b/daphne/__init__.py @@ -1 +1 @@ -__version__ = "2.4.0" +__version__ = "2.4.1"