summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2021-12-19 17:38:16 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2021-12-19 17:38:16 +0900
commit5cf55d1c901ca49481d7bf4021190b1ff737956d (patch)
tree828db1ae644ed4d31eff38ad497962d9881e217a
parent54613e05c409a5c5335e39517d71d6d8a0f2a464 (diff)
downloadsphinx-git-4.3.2.tar.gz
Bump to 4.3.2 finalv4.3.2
-rw-r--r--CHANGES19
-rw-r--r--sphinx/__init__.py4
2 files changed, 4 insertions, 19 deletions
diff --git a/CHANGES b/CHANGES
index f642906c5..9f4d12ae9 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,17 +1,5 @@
-Release 4.3.2 (in development)
-==============================
-
-Dependencies
-------------
-
-Incompatible changes
---------------------
-
-Deprecated
-----------
-
-Features added
---------------
+Release 4.3.2 (released Dec 19, 2021)
+=====================================
Bugs fixed
----------
@@ -19,9 +7,6 @@ Bugs fixed
* #9917: C and C++, parse fundamental types no matter the order of simple type
specifiers.
-Testing
---------
-
Release 4.3.1 (released Nov 28, 2021)
=====================================
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index f719d701e..8d90f733a 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.2+'
+__version__ = '4.3.2'
__released__ = '4.3.2' # used when Sphinx builds its own docs
#: Version info for better programmatic use.
@@ -38,7 +38,7 @@ __released__ = '4.3.2' # used when Sphinx builds its own docs
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
-version_info = (4, 3, 2, 'beta', 0)
+version_info = (4, 3, 2, 'final', 0)
package_dir = path.abspath(path.dirname(__file__))