Skip to content

Commit 657d2c1

Browse files
committed
Bump to 8.2.0 candidate 1
1 parent 3353862 commit 657d2c1

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
@@ -2,7 +2,7 @@
22

33
from __future__ import annotations
44

5-
__version__ = '8.2.0'
5+
__version__ = '8.2.0rc1'
66
__display_version__ = __version__ # used for command line version
77

88
# Keep this file executable as-is in Python 3!
@@ -34,11 +34,11 @@
3434
#:
3535
#: .. versionadded:: 1.2
3636
#: Before version 1.2, check the string ``sphinx.__version__``.
37-
version_info = (8, 2, 0, 'beta', 0)
37+
version_info = (8, 2, 0, 'candidate', 1)
3838

3939
package_dir = _StrPath(__file__).resolve().parent
4040

41-
_in_development = True
41+
_in_development = False
4242
if _in_development:
4343
# Only import subprocess if needed
4444
import subprocess

0 commit comments

Comments
 (0)