From 64665f136b781426c526877283f30b690c1fa074 Mon Sep 17 00:00:00 2001 From: shimizukawa Date: Sat, 14 Mar 2015 16:48:40 +0900 Subject: [PATCH] bump version to 1.4a0 --- sphinx/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 1e1b5bc6f2..720c5a8dff 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -15,13 +15,13 @@ import sys from os import path -__version__ = '1.3+' -__released__ = '1.3+' # used when Sphinx builds its own docs +__version__ = '1.4a0+' +__released__ = '1.4a0' # 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, 3, 1, 'beta', 1) +version_info = (1, 4, 0, 'alpha', 0) package_dir = path.abspath(path.dirname(__file__))