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:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2021-11-27 19:04:37 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2021-11-27 19:04:37 +0300
commitad3f23e256a3c203721250343b7055b830e74247 (patch)
tree79252a190f3e51f382c32159a12f23a1ae08238c
parenta5d1c225123d11b3fab4de379142c2181b95096d (diff)
Bump to 4.3.1 finalv4.3.1
-rw-r--r--CHANGES16
-rw-r--r--sphinx/__init__.py4
2 files changed, 4 insertions, 16 deletions
diff --git a/CHANGES b/CHANGES
index 5126ffb40..3edb32310 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,14 +1,5 @@
-Release 4.3.1 (in development)
-==============================
-
-Dependencies
-------------
-
-Incompatible changes
---------------------
-
-Deprecated
-----------
+Release 4.3.1 (released Nov 28, 2021)
+=====================================
Features added
--------------
@@ -31,9 +22,6 @@ Bugs fixed
* #9864: mathjax: Failed to render equations via MathJax v2. The loading method
of MathJax is back to "async" method again
-Testing
---------
-
Release 4.3.0 (released Nov 11, 2021)
=====================================
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index 62b3645e7..9ce3b2614 100644
--- a/sphinx/__init__.py
+++ b/sphinx/__init__.py
@@ -27,7 +27,7 @@ if 'PYTHONWARNINGS' not in os.environ:
warnings.filterwarnings('ignore', "'U' mode is deprecated",
DeprecationWarning, module='docutils.io')
-__version__ = '4.3.1+'
+__version__ = '4.3.1'
__released__ = '4.3.1' # used when Sphinx builds its own docs
#: Version info for better programmatic use.
@@ -38,7 +38,7 @@ __released__ = '4.3.1' # used when Sphinx builds its own docs
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
-version_info = (4, 3, 1, 'beta', 0)
+version_info = (4, 3, 1, 'final', 0)
package_dir = path.abspath(path.dirname(__file__))