summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES16
-rw-r--r--sphinx/__init__.py6
2 files changed, 5 insertions, 17 deletions
diff --git a/CHANGES b/CHANGES
index 636f7db84..28d1ec711 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,14 +1,5 @@
-Release 1.8.3 (in development)
-==============================
-
-Dependencies
-------------
-
-Incompatible changes
---------------------
-
-Deprecated
-----------
+Release 1.8.3 (released Dec 26, 2018)
+=====================================
Features added
--------------
@@ -40,9 +31,6 @@ Bugs fixed
* #5846: htmlhelp: convert hex escaping to decimal escaping in .hhc/.hhk files
* htmlhelp: broken .hhk file generated when title contains a double quote
-Testing
---------
-
Release 1.8.2 (released Nov 11, 2018)
=====================================
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index 880992605..ee75f6fc2 100644
--- a/sphinx/__init__.py
+++ b/sphinx/__init__.py
@@ -36,8 +36,8 @@ if 'PYTHONWARNINGS' not in os.environ:
warnings.filterwarnings('ignore', "'U' mode is deprecated",
DeprecationWarning, module='docutils.io')
-__version__ = '1.8.2+'
-__released__ = '1.8.2' # used when Sphinx builds its own docs
+__version__ = '1.8.3'
+__released__ = '1.8.3' # used when Sphinx builds its own docs
#: Version info for better programmatic use.
#:
@@ -47,7 +47,7 @@ __released__ = '1.8.2' # used when Sphinx builds its own docs
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
-version_info = (1, 8, 2, 'beta', 0)
+version_info = (1, 8, 3, 'final', 0)
package_dir = path.abspath(path.dirname(__file__))