- 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
+ <https://github.com/tornadoweb/tornado/pull/1977>`_. 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`
~~~~~~~~~~~~~~~~~~~~
kwargs = {}
-version = "4.5b1"
+version = "4.5b2"
with open('README.rst') as f:
kwargs['long_description'] = f.read()
# 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)