From 32320ec094e406948b6efedc6ad2a3a5414a3de6 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Fri, 13 May 2016 10:27:12 -0700 Subject: [PATCH] Releasing 0.13.1 --- CHANGELOG.txt | 10 ++++++++++ channels/__init__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 6f12a86..c6bdc0c 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,13 @@ +0.13.1 (2016-05-13) +------------------- + +* enforce_ordering now queues future messages in a channel rather than + spinlocking worker processes to achieve delays. + +* ConsumeLater no longer duplicates messages when they're requeued below the + limit. + + 0.13.0 (2016-05-07) ------------------- diff --git a/channels/__init__.py b/channels/__init__.py index dd7e75a..ae21a00 100644 --- a/channels/__init__.py +++ b/channels/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.13.0" +__version__ = "0.13.1" default_app_config = 'channels.apps.ChannelsConfig' DEFAULT_CHANNEL_LAYER = 'default'