From e16b58bcb542521590d4d5b9700f7096636a46f2 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Sun, 22 Jul 2018 09:45:59 -0700 Subject: [PATCH] Releasing 2.2.1 --- CHANGELOG.txt | 13 +++++++++++++ daphne/__init__.py | 2 +- setup.py | 3 ++- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index d4d5bbc..2740193 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,16 @@ +2.2.1 (2018-07-22) +------------------ + +* Python 3.7 compatability is flagged and ensured by using Twisted 18.7 and + above as a dependency. + +* The send() awaitable in applications no longer blocks if the connection is + closed. + +* Fixed a race condition where applications would be cleaned up before they + had even started. + + 2.2.0 (2018-06-13) ------------------ diff --git a/daphne/__init__.py b/daphne/__init__.py index 8a124bf..b19ee4b 100755 --- a/daphne/__init__.py +++ b/daphne/__init__.py @@ -1 +1 @@ -__version__ = "2.2.0" +__version__ = "2.2.1" diff --git a/setup.py b/setup.py index 939c0cb..692ab6e 100755 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ setup( packages=find_packages() + ["twisted.plugins"], include_package_data=True, install_requires=[ - "twisted>=17.5", + "twisted>=18.7", "autobahn>=0.18", ], setup_requires=[ @@ -49,6 +49,7 @@ setup( "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", "Topic :: Internet :: WWW/HTTP", ], )