Skip to content

Commit 8cb979b

Browse files
committedApr 6, 2023
docs: prep for 7.2.3
1 parent 6d5c4d4 commit 8cb979b

File tree

6 files changed

+14
-12
lines changed

6 files changed

+14
-12
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-3:
23+
24+
Version 7.2.3 — 2023-04-06
25+
--------------------------
2226

2327
- Fix: the :ref:`config_run_sigterm` setting was meant to capture data if a
2428
process was terminated with a SIGTERM signal, but it didn't always. This was
@@ -38,8 +42,6 @@ Unreleased
3842
.. _pull 1600: https://github.com/nedbat/coveragepy/pull/1600
3943

4044

41-
.. scriv-start-here
42-
4345
.. _changes_7-2-2:
4446

4547
Version 7.2.2 — 2023-03-16

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ cheats: ## Create some useful snippets for releasing.
164164
python igor.py cheats | tee cheats.txt
165165

166166
relbranch: ## Create the branch for releasing.
167-
echo git switch -c nedbat/release-$$(date +%Y%m%d)
167+
git switch -c nedbat/release-$$(date +%Y%m%d)
168168

169169
relcommit1: ## Commit the first release changes.
170170
git commit -am "docs: prep for $$(python setup.py --version)"

‎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.0a6
31+
* CPython 3.7 through 3.12.0a7
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, 3, "alpha", 0)
12-
_dev = 1
11+
version_info = (7, 2, 3, "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.2"
69+
version = "7.2.3"
7070
# The full version, including alpha/beta/rc tags.
71-
release = "7.2.2"
71+
release = "7.2.3"
7272
# The date of release, in "monthname day, year" format.
73-
release_date = "March 16, 2023"
73+
release_date = "April 6, 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.0a6.
21+
* Python versions 3.7 through 3.12.0a7.
2222
* PyPy3 7.3.11.
2323

2424
.. ifconfig:: prerelease

0 commit comments

Comments
 (0)
Please sign in to comment.