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'