diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 3803b64..40b016d 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,13 @@ +0.10.0 (2016-03-21) +------------------- + +* Multiple cookies are now set correctly + +* Follows new ASGI single-response-channel spec for ! + +* Follows new ASGI header encoding spec for HTTP + + 0.9.3 (2016-03-08) ------------------ diff --git a/daphne/__init__.py b/daphne/__init__.py index c598173..61fb31c 100755 --- a/daphne/__init__.py +++ b/daphne/__init__.py @@ -1 +1 @@ -__version__ = "0.9.3" +__version__ = "0.10.0" diff --git a/setup.py b/setup.py index 3bf42d2..5a58390 100755 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ setup( packages=find_packages(), include_package_data=True, install_requires=[ - 'asgiref>=0.9', + 'asgiref>=0.10', 'twisted>=15.5', 'autobahn>=0.12', ],