Skip to content

Commit 51b3e82

Browse files
committedMay 29, 2023
docs: prep for 7.2.7
1 parent 6df9ee5 commit 51b3e82

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed
 

‎CHANGES.rst

+8-4
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,25 @@ 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-7:
23+
24+
Version 7.2.7 — 2023-05-29
25+
--------------------------
2226

2327
- Fix: reverted a `change from 6.4.3 <pull 1347_>`_ that helped Cython, but
2428
also increased the size of data files when using dynamic contexts, as
2529
described in the now-fixed `issue 1586`_. The problem is now avoided due to a
2630
recent change (`issue 1538`_). Thanks to `Anders Kaseorg <pull 1629_>`_
2731
and David Szotten for persisting with problem reports and detailed diagnoses.
2832

33+
- Wheels are now provided for CPython 3.12.
34+
2935
.. _issue 1586: https://github.com/nedbat/coveragepy/issues/1586
3036
.. _pull 1629: https://github.com/nedbat/coveragepy/pull/1629
3137

3238

33-
.. scriv-start-here
34-
3539
.. _changes_7-2-6:
3640

3741
Version 7.2.6 — 2023-05-23

‎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, 7, "alpha", 0)
12-
_dev = 1
11+
version_info = (7, 2, 7, "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.6"
69+
version = "7.2.7"
7070
# The full version, including alpha/beta/rc tags.
71-
release = "7.2.6"
71+
release = "7.2.7"
7272
# The date of release, in "monthname day, year" format.
73-
release_date = "May 23, 2023"
73+
release_date = "May 29, 2023"
7474
# @@@ end
7575

7676
rst_epilog = """

0 commit comments

Comments
 (0)
Please sign in to comment.