Bump to 6.2.0 final

This commit is contained in:
Adam Turner 2023-04-23 21:03:34 +01:00
parent 4e27a5fba1
commit 70102ac2ee
2 changed files with 4 additions and 25 deletions

25
CHANGES
View File

@ -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)
=====================================

View File

@ -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 = (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