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-04-22 19:23:45 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2018-04-22 19:23:45 +0300
commitd5a108428dcb25b71980a02904b6b2ae0376f296 (patch)
tree9b4d9b6171490312ed3e0f63be05e9ba270464e0
parenta0cb99ee7105ced421faa28d7780f8c07280db19 (diff)
Bump to 1.7.3 finalv1.7.3
-rw-r--r--CHANGES19
-rw-r--r--sphinx/__init__.py4
2 files changed, 4 insertions, 19 deletions
diff --git a/CHANGES b/CHANGES
index 48d95d852..c5666219a 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,17 +1,5 @@
-Release 1.7.3 (in development)
-==============================
-
-Dependencies
-------------
-
-Incompatible changes
---------------------
-
-Deprecated
-----------
-
-Features added
---------------
+Release 1.7.3 (released Apr 23, 2018)
+=====================================
Bugs fixed
----------
@@ -35,9 +23,6 @@ Bugs fixed
* #4459: duplicated labels detector does not work well in parallel build
* #4878: Crashed with extension which returns invalid metadata
-Testing
---------
-
Release 1.7.2 (released Mar 21, 2018)
=====================================
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index 67278f4c0..b1fb31b26 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.3+'
+__version__ = '1.7.3'
__released__ = '1.7.3' # 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, 3, 'beta', 0)
+version_info = (1, 7, 3, 'final', 0)
package_dir = path.abspath(path.dirname(__file__))