Skip to content

Commit cc1f6cb

Browse files
committed
Bump to 5.1.0 final
1 parent 8effd15 commit cc1f6cb

File tree

2 files changed

+11
-40
lines changed

2 files changed

+11
-40
lines changed

CHANGES

+9-38
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Release 5.1.0 (in development)
2-
==============================
1+
Release 5.1.0 (released Jul 24, 2022)
2+
=====================================
33

44
Dependencies
55
------------
@@ -8,9 +8,6 @@ Dependencies
88

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

11-
Incompatible changes
12-
--------------------
13-
1411
Deprecated
1512
----------
1613

@@ -21,6 +18,8 @@ Deprecated
2118
Features added
2219
--------------
2320

21+
* #10444: html theme: Allow specifying multiple CSS files through the ``stylesheet``
22+
setting in ``theme.conf`` or by setting ``html_style`` to an iterable of strings.
2423
* #10366: std domain: Add support for emphasising placeholders in :rst:dir:`option`
2524
directives through a new :confval:`option_emphasise_placeholders` configuration
2625
option.
@@ -43,6 +42,11 @@ Features added
4342
Bugs fixed
4443
----------
4544

45+
* #10594: HTML Theme: field term colons are doubled if using Docutils 0.18+
46+
* #10596: Build failure if Docutils version is 0.18 (not 0.18.1) due
47+
to missing ``Node.findall()``
48+
* #10506: LaTeX: build error if highlighting inline code role in figure caption
49+
(refs: #10251)
4650
* #10634: Make -P (pdb) option work better with exceptions triggered from events
4751
* #10031: py domain: Fix spurious whitespace in unparsing various operators (``+``,
4852
``-``, ``~``, and ``**``). Patch by Adam Turner.
@@ -68,39 +72,6 @@ Bugs fixed
6872
using ``:any:`` and autodoc.
6973
* #10548: HTML Search: fix minor summary issues.
7074

71-
Testing
72-
--------
73-
74-
Release 5.0.3 (in development)
75-
==============================
76-
77-
Dependencies
78-
------------
79-
80-
Incompatible changes
81-
--------------------
82-
83-
Deprecated
84-
----------
85-
86-
Features added
87-
--------------
88-
89-
* #10444: html theme: Allow specifying multiple CSS files through the ``stylesheet``
90-
setting in ``theme.conf`` or by setting ``html_style`` to an iterable of strings.
91-
92-
Bugs fixed
93-
----------
94-
95-
* #10594: HTML Theme: field term colons are doubled if using Docutils 0.18+
96-
* #10596: Build failure if Docutils version is 0.18 (not 0.18.1) due
97-
to missing ``Node.findall()``
98-
* #10506: LaTeX: build error if highlighting inline code role in figure caption
99-
(refs: #10251)
100-
101-
Testing
102-
--------
103-
10475
Release 5.0.2 (released Jun 17, 2022)
10576
=====================================
10677

sphinx/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
warnings.filterwarnings('ignore', 'The frontend.Option class .*',
2222
DeprecationWarning, module='docutils.frontend')
2323

24-
__version__ = '5.1.0+'
24+
__version__ = '5.1.0'
2525
__released__ = '5.1.0' # used when Sphinx builds its own docs
2626

2727
#: Version info for better programmatic use.
@@ -32,7 +32,7 @@
3232
#:
3333
#: .. versionadded:: 1.2
3434
#: Before version 1.2, check the string ``sphinx.__version__``.
35-
version_info = (5, 1, 0, 'beta', 0)
35+
version_info = (5, 1, 0, 'final', 0)
3636

3737
package_dir = path.abspath(path.dirname(__file__))
3838

0 commit comments

Comments
 (0)