diff options
-rw-r--r-- | CHANGES | 19 | ||||
-rw-r--r-- | sphinx/__init__.py | 4 |
2 files changed, 4 insertions, 19 deletions
@@ -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__)) |