Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Mar 2, 2025
1 parent ee96ef3 commit 5739a9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sphinx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
if TYPE_CHECKING:
from typing import Final

__version__: Final = '8.2.2'
__version__: Final = '8.3.0'
__display_version__: Final = __version__ # used for command line version

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

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

_in_development = False
_in_development = True
if _in_development:
# Only import subprocess if needed
import subprocess
Expand Down

0 comments on commit 5739a9d

Please sign in to comment.