diff --git a/CHANGELOG.txt b/CHANGELOG.txt index e5292be..d5e244f 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,11 @@ +0.14.3 (2016-06-21) +------------------- + +* + signs in query strings are no longer double-decoded + +* Message now has .values(), .keys() and .items() to match dict + + 0.14.2 (2016-06-16) ------------------- diff --git a/channels/__init__.py b/channels/__init__.py index e2892ed..4fb0c47 100644 --- a/channels/__init__.py +++ b/channels/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.14.2" +__version__ = "0.14.3" default_app_config = 'channels.apps.ChannelsConfig' DEFAULT_CHANNEL_LAYER = 'default'