From 5dc6a1bfbf25e7a3ed4b7e481d2ea939ed14b80e Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Mon, 10 Apr 2017 22:43:04 -0400 Subject: [PATCH] Bump to 4.5b2, update release notes --- docs/releases/v4.5.0.rst | 13 +++++++++++++ setup.py | 2 +- tornado/__init__.py | 4 ++-- 3 files changed, 16 insertions(+), 3 deletions(-) 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) -- 2.47.3