]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Set version number to 4.4.1 v4.4.1
authorBen Darnell <ben@bendarnell.com>
Sat, 23 Jul 2016 16:27:16 +0000 (12:27 -0400)
committerBen Darnell <ben@bendarnell.com>
Sat, 23 Jul 2016 16:27:16 +0000 (12:27 -0400)
docs/releases.rst
docs/releases/v4.4.1.rst [new file with mode: 0644]
setup.py
tornado/__init__.py

index cb2c026f9cb03308b5ec0c416b66e7e924c99210..f61d1ccb7f24832c7d1661e1069e6fd3655745d1 100644 (file)
@@ -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 (file)
index 0000000..b63ce15
--- /dev/null
@@ -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.
index 836c3632c49950aa97dcf964cfee6f0fc9387ad9..9eddaeff39b721fe03acbdc45b8e670db6fc4320 100644 (file)
--- 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()
index 140d1711ef0228b8571472b49b57da40494025c7..9778f65868966a9694a719cc1ea6cd16e4698f8b 100644 (file)
@@ -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)