Skip to content

Commit 910b368

Browse files
committed
Bump version
1 parent 78bb5a1 commit 910b368

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed

CHANGES.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
Release 8.2.1 (in development)
2+
==============================
3+
4+
Dependencies
5+
------------
6+
7+
Incompatible changes
8+
--------------------
9+
10+
Deprecated
11+
----------
12+
13+
Features added
14+
--------------
15+
16+
Bugs fixed
17+
----------
18+
19+
Testing
20+
-------
21+
22+
123
Release 8.2.0 (released Feb 18, 2025)
224
=====================================
325

sphinx/__init__.py

Lines changed: 3 additions & 3 deletions
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.1'
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, 'final', 0)
37+
version_info = (8, 2, 1, 'beta', 0)
3838

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

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

0 commit comments

Comments
 (0)