mirror of
https://github.com/django/daphne.git
synced 2024-11-21 15:36:33 +03:00
Releasing 2.2.1
This commit is contained in:
parent
d5611bccb6
commit
e16b58bcb5
|
@ -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)
|
||||
------------------
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
__version__ = "2.2.0"
|
||||
__version__ = "2.2.1"
|
||||
|
|
3
setup.py
3
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",
|
||||
],
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue
Block a user