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'