From: Ben Darnell Date: Thu, 20 Apr 2017 13:32:04 +0000 (-0400) Subject: Version 4.5.1 X-Git-Tag: v4.5.1^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e4f26acdabca32f6cc94a2681fb518dbce132688;p=thirdparty%2Ftornado.git Version 4.5.1 --- diff --git a/docs/releases.rst b/docs/releases.rst index ebf0978a0..8fb67c8e1 100644 --- a/docs/releases.rst +++ b/docs/releases.rst @@ -4,6 +4,7 @@ Release notes .. toctree:: :maxdepth: 2 + releases/v4.5.1 releases/v4.5.0 releases/v4.4.3 releases/v4.4.2 diff --git a/docs/releases/v4.5.1.rst b/docs/releases/v4.5.1.rst new file mode 100644 index 000000000..2e0aad674 --- /dev/null +++ b/docs/releases/v4.5.1.rst @@ -0,0 +1,15 @@ +What's new in Tornado 4.5 +========================= + +Apr 16, 2017 +------------ + +`tornado.log` +~~~~~~~~~~~~~ + +- Improved detection of libraries for colorized logging. + +`tornado.httputil` +~~~~~~~~~~~~~~~~~~ + +- `.url_concat` once again treats None as equivalent to an empty sequence. diff --git a/setup.py b/setup.py index 9b152e8cf..c65e25d66 100644 --- a/setup.py +++ b/setup.py @@ -103,7 +103,7 @@ http://api.mongodb.org/python/current/installation.html#osx kwargs = {} -version = "4.5" +version = "4.5.1" with open('README.rst') as f: kwargs['long_description'] = f.read() diff --git a/tornado/__init__.py b/tornado/__init__.py index f409a6ed7..f054e4026 100644 --- a/tornado/__init__.py +++ b/tornado/__init__.py @@ -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" -version_info = (4, 5, 0, 0) +version = "4.5.1" +version_info = (4, 5, 1, 0)