Skip to content

Commit

Permalink
Bump to 8.2.2 final
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Mar 2, 2025
1 parent 3e0021c commit ee96ef3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions doc/changes/8.2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Sphinx 8.2
==========


Release 8.2.2 (in development)
==============================
Release 8.2.2 (released Mar 01, 2025)
=====================================

Bugs fixed
----------
Expand Down
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.3.0'
__version__: Final = '8.2.2'
__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, 3, 0, 'beta', 0)
version_info: Final = (8, 2, 2, 'final', 0)

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

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

0 comments on commit ee96ef3

Please sign in to comment.