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>2018-03-21 15:03:54 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2018-03-21 15:03:54 +0300
commitd029b3d5c94aeeadbdbf197356d2a4c6a0335b8d (patch)
tree0e16a3e8eae379e753d8f30fd07948ec01e1f503
parentce3019821b1f805bc72dfe5ecef727419701c410 (diff)
Bump to 1.7.2 finalv1.7.2
-rw-r--r--CHANGES16
-rw-r--r--sphinx/__init__.py4
2 files changed, 4 insertions, 16 deletions
diff --git a/CHANGES b/CHANGES
index b7f7b3506..66271df6a 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,20 +1,11 @@
-Release 1.7.2 (in development)
-==============================
-
-Dependencies
-------------
+Release 1.7.2 (released Mar 21, 2018)
+=====================================
Incompatible changes
--------------------
* #4520: apidoc: folders with an empty __init__.py are no longer excluded from
TOC
-Deprecated
-----------
-
-Features added
---------------
-
Bugs fixed
----------
@@ -38,9 +29,6 @@ Bugs fixed
* epub: Fix docTitle elements of toc.ncx is not escaped
* #4520: apidoc: Subpackage not in toc (introduced in 1.6.6) now fixed
-Testing
---------
-
Release 1.7.1 (released Feb 23, 2018)
=====================================
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index b819b1d5f..e93c6da09 100644
--- a/sphinx/__init__.py
+++ b/sphinx/__init__.py
@@ -31,13 +31,13 @@ if 'PYTHONWARNINGS' not in os.environ:
warnings.filterwarnings('ignore', "'U' mode is deprecated",
DeprecationWarning, module='docutils.io')
-__version__ = '1.7.2+'
+__version__ = '1.7.2'
__released__ = '1.7.2' # 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, 7, 2, 'beta', 0)
+version_info = (1, 7, 2, 'final', 0)
package_dir = path.abspath(path.dirname(__file__))