Skip to content

Commit

Permalink
Releasing 2.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewgodwin committed Dec 9, 2018
1 parent af80858 commit 8d81c2b
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Full release notes, with more details and upgrade information, are available at:
https://channels.readthedocs.io/en/latest/releases

2.1.6 (2018-12-08)
------------------

* HttpCommunicator now extracts query strings correctly

* AsyncHttpConsumer provides channel layer attributes

* Prevent late-Daphne import errors


2.1.5 (2018-10-22)
------------------
Expand Down
2 changes: 1 addition & 1 deletion channels/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "2.1.5"
__version__ = "2.1.6"

default_app_config = "channels.apps.ChannelsConfig"
DEFAULT_CHANNEL_LAYER = "default"
23 changes: 23 additions & 0 deletions docs/releases/2.1.6.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
2.1.6 Release Notes
===================

Channels 2.1.6 is another bugfix release in the 2.1 series.


Bugfixes & Small Changes
------------------------

* HttpCommunicator now extracts query strings correctly from its provided
arguments

* AsyncHttpConsumer provides channel layer attributes following the same
conventions as other consumer classes

* Prevent late-Daphne import errors where importing ``daphne.server`` didn't
work due to a bad linter fix.


Backwards Incompatible Changes
------------------------------

None.
1 change: 1 addition & 0 deletions docs/releases/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ Release Notes
2.1.3
2.1.4
2.1.5
2.1.6
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ max-line-length = 119

[isort]
include_trailing_comma = True
known_third_party = django
known_first_party = channels,daphne,asgiref
multi_line_output = 3
line_length = 88
Expand Down

0 comments on commit 8d81c2b

Please sign in to comment.