Bump to 6.0.1 final

This commit is contained in:
Adam Turner 2023-01-05 11:58:30 +00:00
parent 821569ea8a
commit a27d262ffe
2 changed files with 4 additions and 16 deletions

16
CHANGES
View File

@ -1,28 +1,16 @@
Release 6.0.1 (in development)
==============================
Release 6.0.1 (released Jan 05, 2023)
=====================================
Dependencies
------------
* Require Pygments 2.13 or later.
Incompatible changes
--------------------
Deprecated
----------
Features added
--------------
Bugs fixed
----------
* #10944: imgmath: Fix resolving image paths for files in nested folders.
Testing
--------
Release 6.0.0 (released Dec 29, 2022)
=====================================

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, 0, 1, 'beta', 0)
version_info = (6, 0, 1, '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