Bump version

This commit is contained in:
Adam Turner
2025-12-02 11:25:18 +00:00
parent a8373783dc
commit 547a1d1a60
2 changed files with 10 additions and 3 deletions
+7
View File
@@ -1,3 +1,10 @@
Release 9.0.2 (in development)
==============================
Bugs fixed
----------
Release 9.0.1 (released Dec 01, 2025)
=====================================
+3 -3
View File
@@ -11,7 +11,7 @@ TYPE_CHECKING = False
if TYPE_CHECKING:
from typing import Final
__version__: Final = '9.0.1'
__version__: Final = '9.0.2'
__display_version__: Final = __version__ # used for command line version
#: Version info for better programmatic use.
@@ -22,12 +22,12 @@ __display_version__: Final = __version__ # used for command line version
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
version_info: Final = (9, 0, 1, 'final', 0)
version_info: Final = (9, 0, 2, 'beta', 0)
package_dir: Final = _StrPath(__file__).resolve().parent
del _StrPath
_in_development = False
_in_development = True
if _in_development:
# Only import subprocess if needed
import subprocess