From ad8f4663c82d33cb407110c21b09fd2aa3aed879 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Tue, 19 Jul 2016 08:55:48 -0400 Subject: [PATCH] Releasing 0.17.0 --- CHANGELOG.txt | 11 +++++++++++ channels/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 9c57c28..27af7c5 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,14 @@ +0.17.0 (2016-07-19) +------------------- + +* Data Binding framework is added, which allows easy tying of model changes + to WebSockets (and other protocols) and vice-versa. + +* Standardised WebSocket/JSON multiplexing introduced + +* WebSocket generic consumers now have a 'close' argument on send/group_send + + 0.16.1 (2016-07-12) ------------------- diff --git a/channels/__init__.py b/channels/__init__.py index 2aff6ec..3f8d4e6 100644 --- a/channels/__init__.py +++ b/channels/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.16.1" +__version__ = "0.17.0" default_app_config = 'channels.apps.ChannelsConfig' DEFAULT_CHANNEL_LAYER = 'default'