Version bump and release notes for 4.4.3
This commit is contained in:
parent
8bb8795216
commit
50f1890e3e
|
@ -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
|
||||
|
|
|
@ -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>`_
|
2
setup.py
2
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()
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue