Bump to 1.8.3 final

This commit is contained in:
Takeshi KOMIYA
2018-12-26 00:29:31 +09:00
parent f8c6c14526
commit 81328ca598
2 changed files with 5 additions and 17 deletions

16
CHANGES
View File

@@ -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)
=====================================

View File

@@ -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__))