From 04118cab7e0d6e0543fd1cdbc86b728b631b8b40 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Sat, 18 Mar 2017 12:38:52 -0700 Subject: [PATCH] Releasing 1.1.0 --- CHANGELOG.txt | 14 ++++++++++++++ daphne/__init__.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 6c0fece..6369627 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,17 @@ +1.1.0 (2017-03-18) +------------------ + +* HTTP/2 termination is now supported natively. The Twisted dependency has been + increased to at least 17.1 as a result; for more information about setting up + HTTP/2, see the README. + +* X-Forwarded-For decoding support understands IPv6 addresses, and picks the + most remote (leftmost) entry if there are multiple relay hosts. + +* Fixed an error where `disconnect` messages would still try and get sent even + if the client never finished a request. + + 1.0.3 (2017-02-12) ------------------ diff --git a/daphne/__init__.py b/daphne/__init__.py index 976498a..6849410 100755 --- a/daphne/__init__.py +++ b/daphne/__init__.py @@ -1 +1 @@ -__version__ = "1.0.3" +__version__ = "1.1.0"