diff --git a/CHANGELOG.txt b/CHANGELOG.txt index c4aab66..7c22505 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,11 @@ +0.9.3 (2016-02-28) +------------------ + +* Static file serving is significantly faster thanks to larger chunk size + +* `runworker` now refuses to start if an in memory layer is configured + + 0.9.2 (2016-02-28) ------------------ diff --git a/channels/__init__.py b/channels/__init__.py index fc4ca95..250b9d0 100644 --- a/channels/__init__.py +++ b/channels/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.9.2" +__version__ = "0.9.3" default_app_config = 'channels.apps.ChannelsConfig' DEFAULT_CHANNEL_LAYER = 'default' diff --git a/docs/index.rst b/docs/index.rst index 881089d..47e2413 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -35,4 +35,3 @@ Contents: integration-plan faqs asgi - releases/index diff --git a/docs/releases/0.8.rst b/docs/releases/0.8.rst deleted file mode 100644 index 9c4d15c..0000000 --- a/docs/releases/0.8.rst +++ /dev/null @@ -1,22 +0,0 @@ -0.8 (2015-09-10) ----------------- - -This release reworks a few of the core concepts to make the channel layer -more efficient and user friendly: - -* Channel names now do not start with ``django``, and are instead just ``http.request``, etc. - -* HTTP headers/GET/etc are only sent with ``websocket.connect`` rather than all websocket requests, - to save a lot of bandwidth in the channel layer. - -* The session/user decorators were renamed, and a ``@channel_session_user`` and ``transfer_user`` set of functions - added to allow moving the user details from the HTTP session to the channel session in the ``connect`` consumer. - -* A ``@linearize`` decorator was added to help ensure a ``connect``/``receive`` pair are not executed - simultaneously on two different workers. - -* Channel backends gained locking mechanisms to support the ``linearize`` feature. - -* ``runwsserver`` will use asyncio rather than Twisted if it's available. - -* Message formats have been made a bit more consistent. diff --git a/docs/releases/index.rst b/docs/releases/index.rst deleted file mode 100644 index 231771f..0000000 --- a/docs/releases/index.rst +++ /dev/null @@ -1,7 +0,0 @@ -Release Notes -------------- - -.. toctree:: - :maxdepth: 1 - - 0.8