From 392ba22768a09733dd2dcd90359023e494983cbb Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Wed, 23 Mar 2016 12:53:34 -0700 Subject: [PATCH] Releasing 0.10.2 --- CHANGELOG.txt | 10 ++++++++++ channels/__init__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index c67d7fa..797b913 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,13 @@ +0.10.2 (2016-03-23) +------------------- + +* Regular expressions for routing include() can now be Unicode under Python 3 + +* Last-resort error handling for HTTP request exceptions inside Django's core + code. If DEBUG is on, shows plain text tracebacks; if it is off, shows + "Internal Server Error". + + 0.10.1 (2016-03-22) ------------------- diff --git a/channels/__init__.py b/channels/__init__.py index 93f3cd6..0536163 100644 --- a/channels/__init__.py +++ b/channels/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.10.1" +__version__ = "0.10.2" default_app_config = 'channels.apps.ChannelsConfig' DEFAULT_CHANNEL_LAYER = 'default'