Skip to content

Commit

Permalink
Bump to 5.1.0 final
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Jul 24, 2022
1 parent 8effd15 commit cc1f6cb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 40 deletions.
47 changes: 9 additions & 38 deletions CHANGES
@@ -1,5 +1,5 @@
Release 5.1.0 (in development)
==============================
Release 5.1.0 (released Jul 24, 2022)
=====================================

Dependencies
------------
Expand All @@ -8,9 +8,6 @@ Dependencies

.. _Docutils 0.19: https://docutils.sourceforge.io/RELEASE-NOTES.html#release-0-19-2022-07-05

Incompatible changes
--------------------

Deprecated
----------

Expand All @@ -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.
Expand All @@ -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.
Expand All @@ -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)
=====================================

Expand Down
4 changes: 2 additions & 2 deletions sphinx/__init__.py
Expand Up @@ -21,7 +21,7 @@
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.
Expand All @@ -32,7 +32,7 @@
#:
#: .. 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__))

Expand Down

0 comments on commit cc1f6cb

Please sign in to comment.