From 8f40ad1d6829e722bb97da97788de77719a2e04d Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Tue, 29 Mar 2016 11:43:54 +0100 Subject: [PATCH] Releasing 0.10.3 --- CHANGELOG.txt | 10 ++++++++++ channels/__init__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 797b913..407123f 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,13 @@ +0.10.3 (2016-03-29) +------------------- + +* Better error messages for wrongly-constructed routing lists + +* Error when trying to use signed cookie backend with channel_session + +* ASGI group_expiry implemented on database channel backend + + 0.10.2 (2016-03-23) ------------------- diff --git a/channels/__init__.py b/channels/__init__.py index 0536163..f62749e 100644 --- a/channels/__init__.py +++ b/channels/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.10.2" +__version__ = "0.10.3" default_app_config = 'channels.apps.ChannelsConfig' DEFAULT_CHANNEL_LAYER = 'default'