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-09-24 18:37:35 +0300
committerAdam Turner <9087854+aa-turner@users.noreply.github.com>2022-09-24 23:55:52 +0300
commit911a5fe8bb393e6a3cf946135792ad4509f3f312 (patch)
tree7aa8cec17775c5dfdcfe7e5fabdc830ea6d1a6b6
parentbc59a1d1de17ad611cc7932ffbdd268137be6cb3 (diff)
Bump to 5.2.0 finalv5.2.0
-rw-r--r--CHANGES10
-rw-r--r--sphinx/__init__.py4
2 files changed, 4 insertions, 10 deletions
diff --git a/CHANGES b/CHANGES
index b367ffa85..91edbee8f 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,5 @@
-Release 5.2.0 (in development)
-==============================
+Release 5.2.0 (released Sep 24, 2022)
+=====================================
Dependencies
------------
@@ -8,9 +8,6 @@ Dependencies
create packages, using PyPA's ``build`` project as a build backend. Patch by
Adam Turner.
-Incompatible changes
---------------------
-
Deprecated
----------
@@ -47,9 +44,6 @@ Bugs fixed
* #10729: C++, fix parsing of certain non-type template parameter packs.
* #10715: Revert #10520: "Fix" use of sidebar classes in ``agogo.css_t``
-Testing
---------
-
Release 5.1.1 (released Jul 26, 2022)
=====================================
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index dbc6fe36a..65cf7f79a 100644
--- a/sphinx/__init__.py
+++ b/sphinx/__init__.py
@@ -30,11 +30,11 @@ __display_version__ = __version__ # used for command line version
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
-version_info = (5, 2, 0, 'beta', 0)
+version_info = (5, 2, 0, 'final', 0)
package_dir = path.abspath(path.dirname(__file__))
-_in_development = True
+_in_development = False
if _in_development:
# Only import subprocess if needed
import subprocess