"""The Tornado web server and tools."""
+# version is a human-readable version number.
+
+# version_info is a four-tuple for programmatic comparison. The first
+# three numbers are the components of the version number. The fourth
+# is zero for an official release, positive for a development branch,
+# or negative for a release candidate (after the base version number
+# has been incremented)
version = "2.1.1git"
-version_info = (2, 1, 1)
+version_info = (2, 1, 1, 1)
to catch exceptions thrown by a ``Task``.
* `tornado.netutil.bind_sockets` now works when ``getaddrinfo`` returns
duplicate addresses.
+* `tornado.version_info` is now a four-tuple so official releases can be
+ distinguished from development branches.