Skip to content

Commit aea90c9

Browse files
committed
Bump to 9.0.0 final
1 parent 28c31aa commit aea90c9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

CHANGES.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Release 9.0.0 (in development)
2-
==============================
1+
Release 9.0.0 (released Nov 30, 2025)
2+
=====================================
33

44
Dependencies
55
------------

sphinx/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
if TYPE_CHECKING:
1212
from typing import Final
1313

14-
__version__: Final = '9.0.0rc4'
14+
__version__: Final = '9.0.0'
1515
__display_version__: Final = __version__ # used for command line version
1616

1717
#: Version info for better programmatic use.
@@ -22,12 +22,12 @@
2222
#:
2323
#: .. versionadded:: 1.2
2424
#: Before version 1.2, check the string ``sphinx.__version__``.
25-
version_info: Final = (9, 0, 0, 'candidate', 4)
25+
version_info: Final = (9, 0, 0, 'final', 0)
2626

2727
package_dir: Final = _StrPath(__file__).resolve().parent
2828
del _StrPath
2929

30-
_in_development = True
30+
_in_development = False
3131
if _in_development:
3232
# Only import subprocess if needed
3333
import subprocess

0 commit comments

Comments
 (0)