Skip to content

Commit 51f14fe

Browse files
committedApr 30, 2023
docs: prep for 7.2.5
1 parent 731e9a7 commit 51f14fe

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed
 

‎CHANGES.rst

+6-4
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,18 @@ 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-5:
23+
24+
Version 7.2.5 — 2023-04-30
25+
--------------------------
2226

2327
- Fix: ``html_report()`` could fail with an AttributeError on ``isatty`` if run
2428
in an unusual environment where sys.stdout had been replaced. This is now
2529
fixed.
2630

2731

28-
.. scriv-start-here
29-
3032
.. _changes_7-2-4:
3133

3234
Version 7.2.4 — 2023-04-28

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

7676
rst_epilog = """

0 commit comments

Comments
 (0)
Please sign in to comment.