diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 7c22505..6339ad1 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,13 @@ +0.9.4 (2016-03-08) +------------------ + +* Worker processes now exit gracefully (finish their current processing) when + sent SIGTERM or SIGINT. + +* `runserver` now has a shorter than standard HTTP timeout configured + of 60 seconds. + + 0.9.3 (2016-02-28) ------------------ diff --git a/channels/__init__.py b/channels/__init__.py index 250b9d0..100bad1 100644 --- a/channels/__init__.py +++ b/channels/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.9.3" +__version__ = "0.9.4" default_app_config = 'channels.apps.ChannelsConfig' DEFAULT_CHANNEL_LAYER = 'default'