]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Final release notes and version bump for 5.0 2300/head
authorBen Darnell <ben@bendarnell.com>
Mon, 5 Mar 2018 01:43:52 +0000 (20:43 -0500)
committerBen Darnell <ben@bendarnell.com>
Mon, 5 Mar 2018 01:43:52 +0000 (20:43 -0500)
docs/releases/v5.0.0.rst
setup.py
tornado/__init__.py

index a3c4736808491224ce2391e0eadeaf6044ff6320..d55c21d36906ff46772401ba7ed3495b541d7b9a 100644 (file)
@@ -1,7 +1,7 @@
 What's new in Tornado 5.0
 =========================
 
-In progress
+Mar 5, 2018
 -----------
 
 Highlights
@@ -322,6 +322,8 @@ Other notes
   garbage collection.
 - `.RedirectHandler` now copies any query arguments from the request
   to the redirect location.
+- If both ``If-None-Match`` and ``If-Modified-Since`` headers are present
+  in a request to `.StaticFileHandler`, the latter is now ignored.
 
 `tornado.websocket`
 ~~~~~~~~~~~~~~~~~~~
index ae83143f696a4ed61b8f5639e91c9132c7d0cc86..b9a0b71dd85d2ada5caafb25f60577e35441577a 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -103,7 +103,7 @@ http://api.mongodb.org/python/current/installation.html#osx
 
 kwargs = {}
 
-version = "5.0b1"
+version = "5.0"
 
 with open('README.rst') as f:
     kwargs['long_description'] = f.read()
index 41d10ec29f2d7fb54a49e0c778645cd5c509be76..73e99155187a4cee7c9e49ecd5d392cc803afb4f 100644 (file)
@@ -24,5 +24,5 @@ from __future__ import absolute_import, division, print_function
 # 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 = "5.0b1"
-version_info = (5, 0, 0, -98)
+version = "5.0"
+version_info = (5, 0, 0, 0)