From e0e27ff9ebd050ba8ecd2d6bc61fb1457ac77d09 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Tue, 29 Mar 2016 03:31:32 -0700 Subject: [PATCH] Releasing 0.10.1 --- CHANGELOG.txt | 12 ++++++++++++ daphne/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 40b016d..4f6af81 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,15 @@ +0.10.1 (2016-03-29) +------------------- + +* WebSockets now close after they've been open for longer than the channel + layer group expiry (86400 seconds by default for most layers). + +* Binding to UNIX sockets is now possible (use the -u argument) + +* WebSockets now send keepalive pings if they've had no data for a certain + amount of time (20 seconds by default, set with --ping-interval) + + 0.10.0 (2016-03-21) ------------------- diff --git a/daphne/__init__.py b/daphne/__init__.py index 61fb31c..1f4c4d4 100755 --- a/daphne/__init__.py +++ b/daphne/__init__.py @@ -1 +1 @@ -__version__ = "0.10.0" +__version__ = "0.10.1"