From 2d97ab2cc70f8439bc0110941b43b906d96a621f Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Thu, 4 Aug 2016 16:55:43 -0700 Subject: [PATCH] Releasing version 0.17.2 --- CHANGELOG.txt | 15 +++++++++++++++ channels/__init__.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index cd7aaed..70a4798 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -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) ------------------- diff --git a/channels/__init__.py b/channels/__init__.py index 34cc1fa..70a855c 100644 --- a/channels/__init__.py +++ b/channels/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.17.1" +__version__ = "0.17.2" default_app_config = 'channels.apps.ChannelsConfig' DEFAULT_CHANNEL_LAYER = 'default'