diff --git a/CHANGELOG.txt b/CHANGELOG.txt index a0fb2fb..6f12a86 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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) ------------------- diff --git a/channels/__init__.py b/channels/__init__.py index 80b4b5d..dd7e75a 100644 --- a/channels/__init__.py +++ b/channels/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.12.0" +__version__ = "0.13.0" default_app_config = 'channels.apps.ChannelsConfig' DEFAULT_CHANNEL_LAYER = 'default' diff --git a/setup.py b/setup.py index 5664ffd..9920e7f 100644 --- a/setup.py +++ b/setup.py @@ -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', ] )