Releasing 0.12.0

This commit is contained in:
Andrew Godwin 2016-04-26 13:51:41 +01:00
parent e684b27e46
commit b374a2a604
3 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,12 @@
0.12.0 (2016-04-26)
-------------------
* HTTP paths and query strings are now expected to be sent over ASGI as
unescaped unicode. Daphne 0.11.0 is updated to send things in this format.
* request.FILES reading bug fixed
0.11.0 (2016-04-05)
-------------------

View File

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

View File

@ -14,6 +14,6 @@ setup(
install_requires=[
'Django>=1.8',
'asgiref>=0.10',
'daphne>=0.10',
'daphne>=0.11',
]
)