From: Ben Darnell Date: Thu, 30 Mar 2017 13:17:36 +0000 (-0400) Subject: Version bump and release notes for 4.4.3 X-Git-Tag: v4.4.3^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=50f1890e3e972eb49caebfe5b4fb5ef5fbfdcbc9;p=thirdparty%2Ftornado.git Version bump and release notes for 4.4.3 --- diff --git a/docs/releases.rst b/docs/releases.rst index a9bfa1c51..23f0966d7 100644 --- a/docs/releases.rst +++ b/docs/releases.rst @@ -4,6 +4,7 @@ Release notes .. toctree:: :maxdepth: 2 + releases/v4.4.3 releases/v4.4.2 releases/v4.4.1 releases/v4.4.0 diff --git a/docs/releases/v4.4.3.rst b/docs/releases/v4.4.3.rst new file mode 100644 index 000000000..888ca35cf --- /dev/null +++ b/docs/releases/v4.4.3.rst @@ -0,0 +1,12 @@ +What's new in Tornado 4.4.3 +=========================== + +Mar 30, 2017 +------------ + +Bug fixes +~~~~~~~~~ + +* The `tornado.auth` module has been updated for compatibility with `a + change to Facebook's access_token endpoint. + `_ diff --git a/setup.py b/setup.py index 8d8109555..0d35a3fd4 100644 --- a/setup.py +++ b/setup.py @@ -103,7 +103,7 @@ http://api.mongodb.org/python/current/installation.html#osx kwargs = {} -version = "4.4.2" +version = "4.4.3" with open('README.rst') as f: kwargs['long_description'] = f.read() diff --git a/tornado/__init__.py b/tornado/__init__.py index 3b10da51f..07766a17b 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.2" -version_info = (4, 4, 2, 0) +version = "4.4.3" +version_info = (4, 4, 3, 0)