Release version 4.5.2
This commit is contained in:
parent
c85dfd2e11
commit
c4911bf2e7
|
@ -4,6 +4,7 @@ Release notes
|
|||
.. toctree::
|
||||
:maxdepth: 2
|
||||
|
||||
releases/v4.5.2
|
||||
releases/v4.5.1
|
||||
releases/v4.5.0
|
||||
releases/v4.4.3
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
What's new in Tornado 4.5.2
|
||||
===========================
|
||||
|
||||
Aug 27, 2017
|
||||
------------
|
||||
|
||||
Bug Fixes
|
||||
~~~~~~~~~
|
||||
|
||||
- Tornado now sets the ``FD_CLOEXEC`` flag on all file descriptors it creates. This prevents hanging client connections and resource leaks when the `tornado.autoreload` module (or ``Application(debug=True)``) is used.
|
2
setup.py
2
setup.py
|
@ -103,7 +103,7 @@ http://api.mongodb.org/python/current/installation.html#osx
|
|||
|
||||
kwargs = {}
|
||||
|
||||
version = "4.5.1"
|
||||
version = "4.5.2"
|
||||
|
||||
with open('README.rst') as f:
|
||||
kwargs['long_description'] = f.read()
|
||||
|
|
|
@ -25,5 +25,5 @@ from __future__ import absolute_import, division, print_function
|
|||
# is zero for an official release, positive for a development branch,
|
||||
# or negative for a release candidate or beta (after the base version
|
||||
# number has been incremented)
|
||||
version = "4.5.1"
|
||||
version_info = (4, 5, 1, 0)
|
||||
version = "4.5.2"
|
||||
version_info = (4, 5, 2, 0)
|
||||
|
|
Loading…
Reference in New Issue