Releasing 0.10.1

This commit is contained in:
Andrew Godwin 2016-03-22 10:32:12 -07:00
parent 52c821a186
commit 7864519241
2 changed files with 21 additions and 1 deletions

View File

@ -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)
------------------

View File

@ -1,4 +1,4 @@
__version__ = "0.10.0"
__version__ = "0.10.1"
default_app_config = 'channels.apps.ChannelsConfig'
DEFAULT_CHANNEL_LAYER = 'default'