diff --git a/CHANGELOG.txt b/CHANGELOG.txt index bde459a..f056660 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,15 @@ +0.14.3 (2016-07-21) +------------------- + +* File descriptors can now be passed on the commandline for process managers + that pass sockets along like this. + +* websocket.disconnect messages now come with a "code" attribute matching the + WebSocket spec. + +* A memory leak in request logging has been fixed. + + 0.14.2 (2016-07-07) ------------------- diff --git a/daphne/__init__.py b/daphne/__init__.py index 745162e..23f0070 100755 --- a/daphne/__init__.py +++ b/daphne/__init__.py @@ -1 +1 @@ -__version__ = "0.14.2" +__version__ = "0.14.3"