From 54bfbee58650a0312b22eb081e8a38d03fcf1a49 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Tue, 12 Aug 2014 09:11:20 -0400 Subject: [PATCH] Set version number to 4.0.1. --- docs/releases/v4.0.1.rst | 4 ++-- setup.py | 2 +- tornado/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/releases/v4.0.1.rst b/docs/releases/v4.0.1.rst index 4221e328..855b5ec4 100644 --- a/docs/releases/v4.0.1.rst +++ b/docs/releases/v4.0.1.rst @@ -1,8 +1,8 @@ What's new in Tornado 4.0.1 =========================== -In progress ------------ +Aug 12, 2014 +------------ * The build will now fall back to pure-python mode if the C extension fails to build for any reason (previously it would fall back for some diff --git a/setup.py b/setup.py index 362bfc03..3e6e5b32 100644 --- a/setup.py +++ b/setup.py @@ -98,7 +98,7 @@ http://api.mongodb.org/python/current/installation.html#osx kwargs = {} -version = "4.0.1b1" +version = "4.0.1" with open('README.rst') as f: kwargs['long_description'] = f.read() diff --git a/tornado/__init__.py b/tornado/__init__.py index 61414662..eefe0f2c 100644 --- a/tornado/__init__.py +++ b/tornado/__init__.py @@ -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.0.1b1" +version = "4.0.1" version_info = (4, 0, 1, -100)