diff --git a/CHANGELOG.txt b/CHANGELOG.txt index ef1ff7d..208e9be 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,14 @@ +0.12.1 (2016-05-18) +------------------- + +* Fixed bug where a non-ASCII byte in URL paths would crash the HTTP parser + without a response; now returns 400, and hardening in place to catch most + other errors and return a 500. + +* WebSocket header format now matches HTTP header format and the ASGI spec. + No update needed to channels library, but user code may need updating. + + 0.12.0 (2016-05-07) ------------------- diff --git a/daphne/__init__.py b/daphne/__init__.py index ea370a8..def467e 100755 --- a/daphne/__init__.py +++ b/daphne/__init__.py @@ -1 +1 @@ -__version__ = "0.12.0" +__version__ = "0.12.1"