Skip to content

Commit 49c194f

Browse files
committed
docs: prep for 7.8.0
1 parent 38782cb commit 49c194f

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

CHANGES.rst

+6-4
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-0:
26+
27+
Version 7.8.0 — 2025-03-30
28+
--------------------------
2529

2630
- Added a new ``source_dirs`` setting for symmetry with the existing
2731
``source_pkgs`` setting. It's preferable to the existing ``source`` setting,
@@ -39,8 +43,6 @@ Unreleased
3943
.. _issue 1942: https://github.com/nedbat/coveragepy/issues/1942
4044
.. _pull 1943: https://github.com/nedbat/coveragepy/pull/1943
4145

42-
.. start-releases
43-
4446
.. _changes_7-7-1:
4547

4648
Version 7.7.1 — 2025-03-21

README.rst

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ Documentation is on `Read the Docs`_. Code repository and issue tracker are on
3535
.. _GitHub: https://github.com/nedbat/coveragepy
3636

3737
**New in 7.x:**
38+
``[run] source_dirs`` setting;
3839
``Coverage.branch_stats()``;
3940
multi-line exclusion patterns;
4041
function/class reporting;

coverage/version.py

+2-2
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, 0, "alpha", 0)
12-
_dev = 1
11+
version_info = (7, 8, 0, "final", 0)
12+
_dev = 0
1313

1414

1515
def _make_version(

doc/conf.py

+3-3
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.7.1"
70+
version = "7.8.0"
7171
# The full version, including alpha/beta/rc tags.
72-
release = "7.7.1"
72+
release = "7.8.0"
7373
# The date of release, in "monthname day, year" format.
74-
release_date = "March 21, 2025"
74+
release_date = "March 30, 2025"
7575
# @@@ end
7676

7777
rst_epilog = f"""

0 commit comments

Comments
 (0)