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'