Skip to content

Commit afa4caf

Browse files
committedMay 24, 2023
docs: prep for 7.2.6
1 parent 009b529 commit afa4caf

File tree

5 files changed

+13
-11
lines changed

5 files changed

+13
-11
lines changed
 

‎CHANGES.rst

+6-4
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,12 @@ development at the same time, such as 4.5.x and 5.0.
1717
.. Version 9.8.1 — 2027-07-27
1818
.. --------------------------
1919
20-
Unreleased
21-
----------
20+
.. scriv-start-here
21+
22+
.. _changes_7-2-6:
23+
24+
Version 7.2.6 — 2023-05-23
25+
--------------------------
2226

2327
- Fix: the ``lcov`` command could raise an IndexError exception if a file is
2428
translated to Python but then executed under its own name. Jinja2 does this
@@ -36,8 +40,6 @@ Unreleased
3640
.. _issue 1628: https://github.com/nedbat/coveragepy/issues/1628
3741

3842

39-
.. scriv-start-here
40-
4143
.. _changes_7-2-5:
4244

4345
Version 7.2.5 — 2023-04-30

‎README.rst

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

2929
.. PYVERSIONS
3030
31-
* CPython 3.7 through 3.12.0a7
31+
* CPython 3.7 through 3.12.0b1
3232
* PyPy3 7.3.11.
3333

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

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

1414

1515
def _make_version(

‎doc/conf.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@
6666
# @@@ editable
6767
copyright = "2009–2023, Ned Batchelder" # pylint: disable=redefined-builtin
6868
# The short X.Y.Z version.
69-
version = "7.2.5"
69+
version = "7.2.6"
7070
# The full version, including alpha/beta/rc tags.
71-
release = "7.2.5"
71+
release = "7.2.6"
7272
# The date of release, in "monthname day, year" format.
73-
release_date = "April 30, 2023"
73+
release_date = "May 23, 2023"
7474
# @@@ end
7575

7676
rst_epilog = """

‎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 versions 3.7 through 3.12.0a7.
21+
* Python versions 3.7 through 3.12.0b1.
2222
* PyPy3 7.3.11.
2323

2424
.. ifconfig:: prerelease

0 commit comments

Comments
 (0)
Please sign in to comment.