From 04cfafeaf5a4257a5bf7c5adfb7dac602bdbc637 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Fri, 22 Jul 2016 21:57:26 -0400 Subject: [PATCH] Releasing 0.17.1 --- CHANGELOG.txt | 13 +++++++++++++ channels/__init__.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 27af7c5..cd7aaed 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,16 @@ +0.17.1 (2016-07-22) +------------------- + +* Bindings now require that `fields` is defined on the class body so all fields + are not sent by default. To restore old behaviour, set it to ['__all__'] + +* Bindings can now be declared after app.ready() has been called and still work. + +* Binding payloads now include the model name as `appname.modelname`. + +* A worker_ready signal now gets triggered when `runworker` starts consuming + messages. It does not fire from within `runserver`. + 0.17.0 (2016-07-19) ------------------- diff --git a/channels/__init__.py b/channels/__init__.py index 3f8d4e6..34cc1fa 100644 --- a/channels/__init__.py +++ b/channels/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.17.0" +__version__ = "0.17.1" default_app_config = 'channels.apps.ChannelsConfig' DEFAULT_CHANNEL_LAYER = 'default'