summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-12-10 10:31:18 +0100
committerGeorg Brandl <georg@python.org>2013-12-10 10:31:18 +0100
commit75833139dac62e11cfc065044824a98d96fd8751 (patch)
tree2a47aee2b8137b4c1200fc0022b0d6de5f672635
parentaaaf4aeee90e88fdcd87ed3d1c63a2d8a0181086 (diff)
parentf414f1c32b9ef23fa56b5f15fa5966eea60bd715 (diff)
downloadsphinx-75833139dac62e11cfc065044824a98d96fd8751.tar.gz
merge with stable
-rw-r--r--CHANGES4
-rw-r--r--sphinx/__init__.py6
2 files changed, 5 insertions, 5 deletions
diff --git a/CHANGES b/CHANGES
index a113c33a..c15cd0b9 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,5 @@
-Release 1.2.1 (in development)
-==============================
+Release 1.3 (in development)
+============================
Release 1.2 (released Dec 10, 2013)
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index d41d4424..f93e57a1 100644
--- a/sphinx/__init__.py
+++ b/sphinx/__init__.py
@@ -15,12 +15,12 @@
import sys
from os import path
-__version__ = '1.2+'
-__released__ = '1.2' # used when Sphinx builds its own docs
+__version__ = '1.3a0'
+__released__ = '1.3a0' # 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, 2, 0, 'final', 0)
+version_info = (1, 3, 0, 'alpha', 0)
package_dir = path.abspath(path.dirname(__file__))