Releasing 0.17.1

This commit is contained in:
Andrew Godwin 2016-07-22 21:57:26 -04:00
parent b76bf3c1cc
commit 04cfafeaf5
2 changed files with 14 additions and 1 deletions

View File

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

View File

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