summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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__))