From 52b46a0c34aa225a206a4877bc6bb3914a913b42 Mon Sep 17 00:00:00 2001 From: shimizukawa Date: Sat, 14 Mar 2015 14:44:17 +0900 Subject: [PATCH] bump version for stable --- sphinx/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sphinx/__init__.py b/sphinx/__init__.py index f36ed3a24..335f7c223 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -15,12 +15,12 @@ import sys from os import path -__version__ = '1.4a0+' -__released__ = '1.4a0' # used when Sphinx builds its own docs +__version__ = '1.3+' +__released__ = '1.3.1' # used when Sphinx builds its own docs # version info for better programmatic use # possible values for 3rd element: 'alpha', 'beta', 'rc', 'final' # 'final' has 0 as the last element -version_info = (1, 4, 0, 'alpha', 0) +version_info = (1, 3, 1, 'final', 0) package_dir = path.abspath(path.dirname(__file__))