Skip to content

Commit

Permalink
Set version number to 4.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bdarnell committed Jul 23, 2016
1 parent c246ee8 commit 087085a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
1 change: 1 addition & 0 deletions docs/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Release notes
.. toctree::
:maxdepth: 2

releases/v4.4.1
releases/v4.4.0
releases/v4.3.0
releases/v4.2.1
Expand Down
12 changes: 12 additions & 0 deletions docs/releases/v4.4.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
What's new in Tornado 4.4.1
===========================

Jul 23, 2016
------------

`tornado.web`
~~~~~~~~~~~~~

* Fixed a regression in Tornado 4.4 which caused URL regexes
containing backslash escapes outside capturing groups to be
rejected.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def build_extension(self, ext):

kwargs = {}

version = "4.4"
version = "4.4.1"

with open('README.rst') as f:
kwargs['long_description'] = f.read()
Expand Down
4 changes: 2 additions & 2 deletions tornado/__init__.py
Original file line number Diff line number Diff line change
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.4"
version_info = (4, 4, 0, 0)
version = "4.4.1"
version_info = (4, 4, 1, 0)

0 comments on commit 087085a

Please sign in to comment.