Version bump and release notes for 4.4.3

This commit is contained in:
Ben Darnell 2017-03-30 09:17:36 -04:00
parent 8bb8795216
commit 50f1890e3e
4 changed files with 16 additions and 3 deletions

View File

@ -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

12
docs/releases/v4.4.3.rst Normal file
View File

@ -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.
<https://github.com/tornadoweb/tornado/pull/1977>`_

View File

@ -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()

View 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.2"
version_info = (4, 4, 2, 0)
version = "4.4.3"
version_info = (4, 4, 3, 0)