diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 0584eb9..8463751 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,7 +1,11 @@ +3.0.2 (2021-04-07) +------------------ + * Fixed a bug where ``send`` passed to applications wasn't a true async function but a lambda wrapper, preventing it from being used with ``asgiref.sync.async_to_sync()``. + 3.0.1 (2020-11-12) ------------------ diff --git a/daphne/__init__.py b/daphne/__init__.py index 9a235f3..530cbd0 100755 --- a/daphne/__init__.py +++ b/daphne/__init__.py @@ -1,6 +1,6 @@ import sys -__version__ = "3.0.1" +__version__ = "3.0.2" # Windows on Python 3.8+ uses ProactorEventLoop, which is not compatible with