From 5722d4e7ea7b40952ffb00e014d7947da89999a2 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Tue, 6 Nov 2018 10:27:18 -0800 Subject: [PATCH] Releasing 2.2.3 --- CHANGELOG.txt | 10 ++++++++++ daphne/__init__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 12a7ff2..74ed310 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,13 @@ +2.2.3 (2018-11-06) +------------------ + +* Enforce that response headers are only bytestrings, rather than allowing + unicode strings and coercing them into bytes. + +* New command-line options to set proxy header names: --proxy-headers-host and + --proxy-headers-port. + + 2.2.2 (2018-08-16) ------------------ diff --git a/daphne/__init__.py b/daphne/__init__.py index ba51ced..f394e69 100755 --- a/daphne/__init__.py +++ b/daphne/__init__.py @@ -1 +1 @@ -__version__ = "2.2.2" +__version__ = "2.2.3"