Releasing version 0.13.0

This commit is contained in:
Andrew Godwin 2016-05-07 13:09:12 -07:00
parent 175d13c28b
commit 6e40fba47c
3 changed files with 12 additions and 3 deletions

View File

@ -1,3 +1,12 @@
0.13.0 (2016-05-07)
-------------------
* Backpressure is now implemented, meaning responses will pause sending if
the client does not read them fast enough.
* DatabaseChannelLayer has been removed; it was not sensible.
0.12.0 (2016-04-26)
-------------------

View File

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

View File

@ -13,7 +13,7 @@ setup(
include_package_data=True,
install_requires=[
'Django>=1.8',
'asgiref>=0.12',
'daphne>=0.11',
'asgiref>=0.13',
'daphne>=0.12',
]
)