From e480917c1a68baf9beb5d8b61981750c4e49dcb0 Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Wed, 7 Apr 2021 20:21:36 +0200 Subject: [PATCH] Bumped version and change notes for 3.0.2 release. --- CHANGELOG.txt | 4 ++++ daphne/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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