Releasing version 0.17.2

This commit is contained in:
Andrew Godwin 2016-08-04 16:55:43 -07:00
parent 9bd8bcf652
commit 2d97ab2cc7
2 changed files with 16 additions and 1 deletions

View File

@ -1,3 +1,17 @@
0.17.2 (2016-08-04)
-------------------
* New CHANNELS_WS_PROTOCOLS setting if you want Daphne to accept certain
subprotocols
* WebsocketBindingWithMembers allows serialization of non-fields on instances
* Class-based consumers have an .as_route() method that lets you skip using
route_class
* Bindings now work if loaded after app ready state
0.17.1 (2016-07-22)
-------------------
@ -11,6 +25,7 @@
* 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.1"
__version__ = "0.17.2"
default_app_config = 'channels.apps.ChannelsConfig'
DEFAULT_CHANNEL_LAYER = 'default'