summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshimizukawa <shimizukawa@gmail.com>2016-02-29 22:47:46 +0900
committershimizukawa <shimizukawa@gmail.com>2016-02-29 22:47:46 +0900
commit9ec5305bba279787911d191fa8168ccab432fba7 (patch)
tree6f114a0a5a1d5c2bc7b14e053e7e00d0663adbf1
parent34422ebcad96c6e980a562397fb9c56df62cd8c1 (diff)
downloadsphinx-git-9ec5305bba279787911d191fa8168ccab432fba7.tar.gz
Bump to 1.3.6 finalv1.3.61.3
-rw-r--r--CHANGES4
-rw-r--r--sphinx/__init__.py6
2 files changed, 5 insertions, 5 deletions
diff --git a/CHANGES b/CHANGES
index 780f2b6ee..afd5cc98d 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,5 @@
-Release 1.3.6 (in development)
-==============================
+Release 1.3.6 (released Feb 29, 2016)
+=====================================
Features added
--------------
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index a44de7946..8b64ecfa0 100644
--- a/sphinx/__init__.py
+++ b/sphinx/__init__.py
@@ -15,13 +15,13 @@
import sys
from os import path
-__version__ = '1.3.5+'
-__released__ = '1.3.5+' # used when Sphinx builds its own docs
+__version__ = '1.3.6'
+__released__ = '1.3.6' # 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, 6, 'beta', 1)
+version_info = (1, 3, 6, 'final', 0)
package_dir = path.abspath(path.dirname(__file__))