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-12-25 18:29:31 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2018-12-25 18:29:31 +0300
commit81328ca59881e56a90375d60ce50a9de237dbafd (patch)
tree675dbba1352d72600c7746279760f140b06bf110
parentf8c6c145268a50ed6cadcb39687eaf8850f6e9e0 (diff)
Bump to 1.8.3 finalv1.8.3
-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__))