Skip to content

Commit

Permalink
Version 4.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bdarnell committed Apr 20, 2017
1 parent ccf2e1e commit e4f26ac
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
1 change: 1 addition & 0 deletions docs/releases.rst
Expand Up @@ -4,6 +4,7 @@ Release notes
.. toctree::
:maxdepth: 2

releases/v4.5.1
releases/v4.5.0
releases/v4.4.3
releases/v4.4.2
Expand Down
15 changes: 15 additions & 0 deletions docs/releases/v4.5.1.rst
@@ -0,0 +1,15 @@
What's new in Tornado 4.5
=========================

Apr 16, 2017
------------

`tornado.log`
~~~~~~~~~~~~~

- Improved detection of libraries for colorized logging.

`tornado.httputil`
~~~~~~~~~~~~~~~~~~

- `.url_concat` once again treats None as equivalent to an empty sequence.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -103,7 +103,7 @@ def build_extension(self, ext):

kwargs = {}

version = "4.5"
version = "4.5.1"

with open('README.rst') as f:
kwargs['long_description'] = f.read()
Expand Down
4 changes: 2 additions & 2 deletions tornado/__init__.py
Expand Up @@ -25,5 +25,5 @@
# 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.5"
version_info = (4, 5, 0, 0)
version = "4.5.1"
version_info = (4, 5, 1, 0)

0 comments on commit e4f26ac

Please sign in to comment.