Bump to 5.1.0 final

This commit is contained in:
Adam Turner 2022-07-24 13:03:30 +01:00
parent 8effd151b9
commit cc1f6cb9f4
2 changed files with 11 additions and 40 deletions

47
CHANGES
View File

@ -1,5 +1,5 @@
Release 5.1.0 (in development)
==============================
Release 5.1.0 (released Jul 24, 2022)
=====================================
Dependencies
------------
@ -8,9 +8,6 @@ Dependencies
.. _Docutils 0.19: https://docutils.sourceforge.io/RELEASE-NOTES.html#release-0-19-2022-07-05
Incompatible changes
--------------------
Deprecated
----------
@ -21,6 +18,8 @@ Deprecated
Features added
--------------
* #10444: html theme: Allow specifying multiple CSS files through the ``stylesheet``
setting in ``theme.conf`` or by setting ``html_style`` to an iterable of strings.
* #10366: std domain: Add support for emphasising placeholders in :rst:dir:`option`
directives through a new :confval:`option_emphasise_placeholders` configuration
option.
@ -43,6 +42,11 @@ Features added
Bugs fixed
----------
* #10594: HTML Theme: field term colons are doubled if using Docutils 0.18+
* #10596: Build failure if Docutils version is 0.18 (not 0.18.1) due
to missing ``Node.findall()``
* #10506: LaTeX: build error if highlighting inline code role in figure caption
(refs: #10251)
* #10634: Make -P (pdb) option work better with exceptions triggered from events
* #10031: py domain: Fix spurious whitespace in unparsing various operators (``+``,
``-``, ``~``, and ``**``). Patch by Adam Turner.
@ -68,39 +72,6 @@ Bugs fixed
using ``:any:`` and autodoc.
* #10548: HTML Search: fix minor summary issues.
Testing
--------
Release 5.0.3 (in development)
==============================
Dependencies
------------
Incompatible changes
--------------------
Deprecated
----------
Features added
--------------
* #10444: html theme: Allow specifying multiple CSS files through the ``stylesheet``
setting in ``theme.conf`` or by setting ``html_style`` to an iterable of strings.
Bugs fixed
----------
* #10594: HTML Theme: field term colons are doubled if using Docutils 0.18+
* #10596: Build failure if Docutils version is 0.18 (not 0.18.1) due
to missing ``Node.findall()``
* #10506: LaTeX: build error if highlighting inline code role in figure caption
(refs: #10251)
Testing
--------
Release 5.0.2 (released Jun 17, 2022)
=====================================

View File

@ -21,7 +21,7 @@ warnings.filterwarnings('ignore', "'U' mode is deprecated",
warnings.filterwarnings('ignore', 'The frontend.Option class .*',
DeprecationWarning, module='docutils.frontend')
__version__ = '5.1.0+'
__version__ = '5.1.0'
__released__ = '5.1.0' # used when Sphinx builds its own docs
#: Version info for better programmatic use.
@ -32,7 +32,7 @@ __released__ = '5.1.0' # used when Sphinx builds its own docs
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
version_info = (5, 1, 0, 'beta', 0)
version_info = (5, 1, 0, 'final', 0)
package_dir = path.abspath(path.dirname(__file__))