Skip to content

Commit 35a31c5

Browse files
committed
docs: prep for 7.7.0
1 parent 8f6e006 commit 35a31c5

File tree

5 files changed

+14
-11
lines changed

5 files changed

+14
-11
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-7-0:
26+
27+
Version 7.7.0 — 2025-03-16
28+
--------------------------
2529

2630
- The Coverage object has a new method, :meth:`.Coverage.branch_stats` for
2731
getting simple branch information for a module. Closes `issue 1888`_.
@@ -46,8 +50,6 @@ Unreleased
4650
.. _pull 1919: https://github.com/nedbat/coveragepy/pull/1919
4751

4852

49-
.. start-releases
50-
5153
.. _changes_7-6-12:
5254

5355
Version 7.6.12 — 2025-02-11

README.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Coverage.py runs on these versions of Python:
2525

2626
.. PYVERSIONS
2727
28-
* Python 3.9 through 3.14 alpha 4, including free-threading.
28+
* Python 3.9 through 3.14 alpha 6, including free-threading.
2929
* PyPy3 versions 3.9, 3.10, and 3.11.
3030

3131
Documentation is on `Read the Docs`_. Code repository and issue tracker are on
@@ -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+
``Coverage.branch_stats()``;
3839
multi-line exclusion patterns;
3940
function/class reporting;
4041
experimental support for sys.monitoring;

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, 7, 0, "alpha", 0)
12-
_dev = 1
11+
version_info = (7, 7, 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.6.12"
70+
version = "7.7.0"
7171
# The full version, including alpha/beta/rc tags.
72-
release = "7.6.12"
72+
release = "7.7.0"
7373
# The date of release, in "monthname day, year" format.
74-
release_date = "February 11, 2025"
74+
release_date = "March 16, 2025"
7575
# @@@ end
7676

7777
rst_epilog = f"""

doc/index.rst

+1-1
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 4, including free-threading.
21+
* Python 3.9 through 3.14 alpha 6, including free-threading.
2222
* PyPy3 versions 3.9, 3.10, and 3.11.
2323

2424
.. ifconfig:: prerelease

0 commit comments

Comments
 (0)