From 70102ac2ee4d89e1293d8efa7763dcdd104ad548 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Sun, 23 Apr 2023 21:03:34 +0100 Subject: [PATCH] Bump to 6.2.0 final --- CHANGES | 25 ++----------------------- sphinx/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 25 deletions(-) diff --git a/CHANGES b/CHANGES index ba3d82b4620..6963899c886 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,5 @@ -Release 6.2.0 (in development) -============================== +Release 6.2.0 (released Apr 23, 2023) +===================================== Dependencies ------------ @@ -97,27 +97,6 @@ Testing * Migrate remaining ``unittest.TestCase`` style test functions to pytest style * Remove tests that rely on setuptools -Release 6.1.4 (in development) -============================== - -Dependencies ------------- - -Incompatible changes --------------------- - -Deprecated ----------- - -Features added --------------- - -Bugs fixed ----------- - -Testing --------- - Release 6.1.3 (released Jan 10, 2023) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 5a152b5216e..fe01277fd2a 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -30,11 +30,11 @@ #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (6, 2, 0, 'beta', 0) +version_info = (6, 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