Skip to content

Commit b98bc9b

Browse files
committed
docs: prep for 7.8.1
1 parent ecbd4da commit b98bc9b

File tree

5 files changed

+13
-11
lines changed

5 files changed

+13
-11
lines changed

CHANGES.rst

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,12 @@ upgrading your version of coverage.py.
2020
.. Version 9.8.1 — 2027-07-27
2121
.. --------------------------
2222
23-
Unreleased
24-
----------
23+
.. start-releases
24+
25+
.. _changes_7-8-1:
26+
27+
Version 7.8.1 — 2025-05-21
28+
--------------------------
2529

2630
- A number of EncodingWarnings were fixed that could appear if you've enabled
2731
PYTHONWARNDEFAULTENCODING, fixing `issue 1966`_. Thanks, `Henry Schreiner
@@ -34,8 +38,6 @@ Unreleased
3438
.. _pull 1967: https://github.com/nedbat/coveragepy/pull/1967
3539
.. _issue 1970: https://github.com/nedbat/coveragepy/issues/1970
3640

37-
.. start-releases
38-
3941
.. _changes_7-8-0:
4042

4143
Version 7.8.0 — 2025-03-30

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Coverage.py runs on these versions of Python:
2626

2727
.. PYVERSIONS
2828
29-
* Python 3.9 through 3.14 alpha 6, including free-threading.
29+
* Python 3.9 through 3.14 beta 1, including free-threading.
3030
* PyPy3 versions 3.9, 3.10, and 3.11.
3131

3232
Documentation is on `Read the Docs`_. Code repository and issue tracker are on

coverage/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
# version_info: same semantics as sys.version_info.
1010
# _dev: the .devN suffix if any.
11-
version_info = (7, 8, 1, "alpha", 0)
12-
_dev = 1
11+
version_info = (7, 8, 1, "final", 0)
12+
_dev = 0
1313

1414

1515
def _make_version(

doc/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@
6767
# @@@ editable
6868
copyright = "2009–2025, Ned Batchelder" # pylint: disable=redefined-builtin
6969
# The short X.Y.Z version.
70-
version = "7.8.0"
70+
version = "7.8.1"
7171
# The full version, including alpha/beta/rc tags.
72-
release = "7.8.0"
72+
release = "7.8.1"
7373
# The date of release, in "monthname day, year" format.
74-
release_date = "March 30, 2025"
74+
release_date = "May 21, 2025"
7575
# @@@ end
7676

7777
rst_epilog = f"""

doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ supported on:
1818

1919
.. PYVERSIONS
2020
21-
* Python 3.9 through 3.14 alpha 6, including free-threading.
21+
* Python 3.9 through 3.14 beta 1, including free-threading.
2222
* PyPy3 versions 3.9, 3.10, and 3.11.
2323

2424
.. ifconfig:: prerelease

0 commit comments

Comments
 (0)