From: Ben Darnell Date: Tue, 11 Apr 2017 02:43:04 +0000 (-0400) Subject: Bump to 4.5b2, update release notes X-Git-Tag: v4.5.0~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5dc6a1bfbf25e7a3ed4b7e481d2ea939ed14b80e;p=thirdparty%2Ftornado.git Bump to 4.5b2, update release notes --- diff --git a/docs/releases/v4.5.0.rst b/docs/releases/v4.5.0.rst index 1632d5251..02f2abae4 100644 --- a/docs/releases/v4.5.0.rst +++ b/docs/releases/v4.5.0.rst @@ -22,6 +22,19 @@ General changes - Reduced the number of circular references, reducing memory usage and improving performance. +`tornado.auth` +~~~~~~~~~~~~~~ + +* The `tornado.auth` module has been updated for compatibility with `a + change to Facebook's access_token endpoint + `_. This includes both + the changes initially released in Tornado 4.4.3 and an additional change + to support the ```session_expires`` field in the new format. + The ``session_expires`` field is currently a string; it should be accessed + as ``int(user['session_expires'])`` because it will change from a string to + an int in Tornado 5.0. + + `tornado.autoreload` ~~~~~~~~~~~~~~~~~~~~ diff --git a/setup.py b/setup.py index 14caff8cc..b529deefb 100644 --- a/setup.py +++ b/setup.py @@ -103,7 +103,7 @@ http://api.mongodb.org/python/current/installation.html#osx kwargs = {} -version = "4.5b1" +version = "4.5b2" with open('README.rst') as f: kwargs['long_description'] = f.read() diff --git a/tornado/__init__.py b/tornado/__init__.py index 548c6272d..cc48c0fc5 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.5b1" -version_info = (4, 5, 0, -99) +version = "4.5b2" +version_info = (4, 5, 0, -98)