From: Ben Darnell Date: Sat, 23 Jul 2016 16:27:16 +0000 (-0400) Subject: Set version number to 4.4.1 X-Git-Tag: v4.4.1^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=087085ab2b8373947e742465538e4a2a89a48f77;p=thirdparty%2Ftornado.git Set version number to 4.4.1 --- diff --git a/docs/releases.rst b/docs/releases.rst index cb2c026f9..f61d1ccb7 100644 --- a/docs/releases.rst +++ b/docs/releases.rst @@ -4,6 +4,7 @@ Release notes .. toctree:: :maxdepth: 2 + releases/v4.4.1 releases/v4.4.0 releases/v4.3.0 releases/v4.2.1 diff --git a/docs/releases/v4.4.1.rst b/docs/releases/v4.4.1.rst new file mode 100644 index 000000000..b63ce15ef --- /dev/null +++ b/docs/releases/v4.4.1.rst @@ -0,0 +1,12 @@ +What's new in Tornado 4.4.1 +=========================== + +Jul 23, 2016 +------------ + +`tornado.web` +~~~~~~~~~~~~~ + +* Fixed a regression in Tornado 4.4 which caused URL regexes + containing backslash escapes outside capturing groups to be + rejected. diff --git a/setup.py b/setup.py index 836c3632c..9eddaeff3 100644 --- a/setup.py +++ b/setup.py @@ -103,7 +103,7 @@ http://api.mongodb.org/python/current/installation.html#osx kwargs = {} -version = "4.4" +version = "4.4.1" with open('README.rst') as f: kwargs['long_description'] = f.read() diff --git a/tornado/__init__.py b/tornado/__init__.py index 140d1711e..9778f6586 100644 --- a/tornado/__init__.py +++ b/tornado/__init__.py @@ -25,5 +25,5 @@ from __future__ import absolute_import, division, print_function, with_statement # 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.4" -version_info = (4, 4, 0, 0) +version = "4.4.1" +version_info = (4, 4, 1, 0)