Bump to 1.8.4 final

This commit is contained in:
Takeshi KOMIYA 2019-02-03 23:15:10 +09:00
parent 4c3ce03985
commit 2f61ba876c
2 changed files with 5 additions and 19 deletions

20
CHANGES
View File

@ -1,20 +1,9 @@
Release 1.8.4 (in development)
==============================
Dependencies
------------
Incompatible changes
--------------------
Deprecated
----------
Features added
--------------
Release 1.8.4 (released Feb 03, 2019)
=====================================
Bugs fixed
----------
* #3707: latex: no bold checkmark (✔) available.
* #5605: with the documentation language set to Chinese, English words could not
be searched.
@ -37,9 +26,6 @@ Bugs fixed
* #5995: autodoc: autodoc_mock_imports conflict with metaclass on Python 3.7
* #5871: texinfo: a section title ``.`` is not allowed
Testing
--------
Release 1.8.3 (released Dec 26, 2018)
=====================================

View File

@ -36,7 +36,7 @@ if 'PYTHONWARNINGS' not in os.environ:
warnings.filterwarnings('ignore', "'U' mode is deprecated",
DeprecationWarning, module='docutils.io')
__version__ = '1.8.4+'
__version__ = '1.8.4'
__released__ = '1.8.4' # used when Sphinx builds its own docs
#: Version info for better programmatic use.
@ -47,7 +47,7 @@ __released__ = '1.8.4' # used when Sphinx builds its own docs
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
version_info = (1, 8, 4, 'beta', 0)
version_info = (1, 8, 4, 'final', 0)
package_dir = path.abspath(path.dirname(__file__))