Release version 4.5.2

This commit is contained in:
Ben Darnell 2017-08-27 12:17:55 -04:00
parent c85dfd2e11
commit c4911bf2e7
4 changed files with 14 additions and 3 deletions

View File

@ -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

10
docs/releases/v4.5.2.rst Normal file
View File

@ -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.

View File

@ -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()

View File

@ -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)