From 7864519241245d242f1460102bd8871d391d65f0 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Tue, 22 Mar 2016 10:32:12 -0700 Subject: [PATCH] Releasing 0.10.1 --- CHANGELOG.txt | 20 ++++++++++++++++++++ channels/__init__.py | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index bd0dcc3..c67d7fa 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,23 @@ +0.10.1 (2016-03-22) +------------------- + +* Regular expressions for HTTP paths can now be Unicode under Python 3 + +* route() and include() now importable directly from `channels` + +* FileResponse send speed improved for all code (previously just for staticfiles) + + +0.10.0 (2016-03-21) +------------------- + +* New routing system + +* Updated to match new ASGI single-reader-channel name spec + +* Updated to match new ASGI HTTP header encoding spec + + 0.9.5 (2016-03-10) ------------------ diff --git a/channels/__init__.py b/channels/__init__.py index 2b2ff0d..93f3cd6 100644 --- a/channels/__init__.py +++ b/channels/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.10.0" +__version__ = "0.10.1" default_app_config = 'channels.apps.ChannelsConfig' DEFAULT_CHANNEL_LAYER = 'default'