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:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2017-05-14 18:14:00 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2017-05-14 18:14:00 +0300
commitf27d9447e09ad118c153f549a4aed4cad7d13c06 (patch)
treec74a9dc009f0e1856f9caa94f7f6a7615f0ce97b
parent1329202502b68244d8c05df8bdf3a402f205eb1d (diff)
Bump to 1.5.6 finalv1.5.61.5
-rw-r--r--CHANGES16
-rw-r--r--sphinx/__init__.py4
2 files changed, 4 insertions, 16 deletions
diff --git a/CHANGES b/CHANGES
index a845bbc9f..4b69d368e 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,14 +1,5 @@
-Release 1.5.6 (in development)
-==============================
-
-Incompatible changes
---------------------
-
-Deprecated
-----------
-
-Features added
---------------
+Release 1.5.6 (released May 15, 2017)
+=====================================
Bugs fixed
----------
@@ -27,9 +18,6 @@ Bugs fixed
* #3320: Warning about reference target not being found for container types
* Misspelled ARCHIVEPREFIX in Makefile for latex build repertory
-Testing
---------
-
Release 1.5.5 (released Apr 03, 2017)
=====================================
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index 3f3061aa3..cb9f9e63f 100644
--- a/sphinx/__init__.py
+++ b/sphinx/__init__.py
@@ -30,13 +30,13 @@ if 'PYTHONWARNINGS' not in os.environ:
warnings.filterwarnings('ignore', "'U' mode is deprecated",
DeprecationWarning, module='docutils.io')
-__version__ = '1.5.6+'
+__version__ = '1.5.6'
__released__ = '1.5.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, 5, 6, 'beta', 0)
+version_info = (1, 5, 6, 'final', 0)
package_dir = path.abspath(path.dirname(__file__))