Skip to content

Commit 21e9f18

Browse files
committed
Bump version
1 parent 847ad0c commit 21e9f18

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sphinx/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
if TYPE_CHECKING:
1818
from typing import Final
1919

20-
__version__: Final = '8.2.3'
20+
__version__: Final = '8.3.0'
2121
__display_version__: Final = __version__ # used for command line version
2222

2323
warnings.filterwarnings(
@@ -35,11 +35,11 @@
3535
#:
3636
#: .. versionadded:: 1.2
3737
#: Before version 1.2, check the string ``sphinx.__version__``.
38-
version_info: Final = (8, 2, 3, 'final', 0)
38+
version_info: Final = (8, 3, 0, 'beta', 0)
3939

4040
package_dir: Final = _StrPath(__file__).resolve().parent
4141

42-
_in_development = False
42+
_in_development = True
4343
if _in_development:
4444
# Only import subprocess if needed
4545
import subprocess

0 commit comments

Comments
 (0)