Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshimizukawa <shimizukawa@gmail.com>2015-03-17 08:30:11 +0300
committershimizukawa <shimizukawa@gmail.com>2015-03-17 08:30:11 +0300
commita4083dde29022eecf26281cf23f54ea586520ec9 (patch)
treeed9d167dae57cea51b3cd43e11c258a71391ea10
parent085bcfa5189ea135f91efa8d88b266be12c9b587 (diff)
Bump to 1.3.1 finalv1.3.11.3.1
-rw-r--r--CHANGES4
-rw-r--r--sphinx/__init__.py6
2 files changed, 5 insertions, 5 deletions
diff --git a/CHANGES b/CHANGES
index 3accf942a..666944a98 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,5 @@
-Release 1.3.1 (in development)
-===============================
+Release 1.3.1 (released Mar 17, 2015)
+=====================================
Bugs fixed
----------
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index f5c5ed85d..705aeabe9 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.3.1'
+__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, 3, 1, 'beta', 1)
+version_info = (1, 3, 1, 'final', 0)
package_dir = path.abspath(path.dirname(__file__))