Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Turner <9087854+aa-turner@users.noreply.github.com>2022-07-24 15:03:30 +0300
committerAdam Turner <9087854+aa-turner@users.noreply.github.com>2022-07-24 15:03:30 +0300
commitcc1f6cb9f48dc3b84228eb0b5e46018fba5d57f4 (patch)
tree792fa282fdb1fd16dfbcc6f11e0ea6c69685809a
parent8effd151b9d705a6d4830feb709584fdc26d6046 (diff)
Bump to 5.1.0 finalv5.1.0
-rw-r--r--CHANGES47
-rw-r--r--sphinx/__init__.py4
2 files changed, 11 insertions, 40 deletions
diff --git a/CHANGES b/CHANGES
index 0e7a748b7..07da6cfe6 100644
--- a/CHANGES
+++ b/CHANGES
@@ -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)
=====================================
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index 3fd1fe0f0..aa865cc8d 100644
--- a/sphinx/__init__.py
+++ b/sphinx/__init__.py
@@ -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__))