Releasing 0.10.2

This commit is contained in:
Andrew Godwin 2016-03-23 12:53:34 -07:00
parent f829a14312
commit 392ba22768
2 changed files with 11 additions and 1 deletions

View File

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

View File

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