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'