summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2023-04-06 08:41:52 -0400
committerNed Batchelder <ned@nedbatchelder.com>2023-04-06 08:41:52 -0400
commit8cb979b406d5c39a74f861f85076cf2d00ecddf9 (patch)
treebd574748661e2c3d5efe7cd4d5e1bf64d5eb4075
parent6d5c4d46648f1a2e5f12059def123c6f29fdd7b2 (diff)
downloadpython-coveragepy-git-8cb979b406d5c39a74f861f85076cf2d00ecddf9.tar.gz
docs: prep for 7.2.3
-rw-r--r--CHANGES.rst10
-rw-r--r--Makefile2
-rw-r--r--README.rst2
-rw-r--r--coverage/version.py4
-rw-r--r--doc/conf.py6
-rw-r--r--doc/index.rst2
6 files changed, 14 insertions, 12 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index a403de3a..937835cc 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -17,8 +17,12 @@ development at the same time, such as 4.5.x and 5.0.
.. Version 9.8.1 — 2027-07-27
.. --------------------------
-Unreleased
-----------
+.. scriv-start-here
+
+.. _changes_7-2-3:
+
+Version 7.2.3 — 2023-04-06
+--------------------------
- Fix: the :ref:`config_run_sigterm` setting was meant to capture data if a
process was terminated with a SIGTERM signal, but it didn't always. This was
@@ -38,8 +42,6 @@ Unreleased
.. _pull 1600: https://github.com/nedbat/coveragepy/pull/1600
-.. scriv-start-here
-
.. _changes_7-2-2:
Version 7.2.2 — 2023-03-16
diff --git a/Makefile b/Makefile
index ca33e6f8..f82f2ee2 100644
--- a/Makefile
+++ b/Makefile
@@ -164,7 +164,7 @@ cheats: ## Create some useful snippets for releasing.
python igor.py cheats | tee cheats.txt
relbranch: ## Create the branch for releasing.
- echo git switch -c nedbat/release-$$(date +%Y%m%d)
+ git switch -c nedbat/release-$$(date +%Y%m%d)
relcommit1: ## Commit the first release changes.
git commit -am "docs: prep for $$(python setup.py --version)"
diff --git a/README.rst b/README.rst
index 8e3ffd94..897f8801 100644
--- a/README.rst
+++ b/README.rst
@@ -28,7 +28,7 @@ Coverage.py runs on these versions of Python:
.. PYVERSIONS
-* CPython 3.7 through 3.12.0a6
+* CPython 3.7 through 3.12.0a7
* PyPy3 7.3.11.
Documentation is on `Read the Docs`_. Code repository and issue tracker are on
diff --git a/coverage/version.py b/coverage/version.py
index 3a27a388..9cf7d9d1 100644
--- a/coverage/version.py
+++ b/coverage/version.py
@@ -8,8 +8,8 @@ from __future__ import annotations
# version_info: same semantics as sys.version_info.
# _dev: the .devN suffix if any.
-version_info = (7, 2, 3, "alpha", 0)
-_dev = 1
+version_info = (7, 2, 3, "final", 0)
+_dev = 0
def _make_version(
diff --git a/doc/conf.py b/doc/conf.py
index 92eb9799..f6310b57 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -66,11 +66,11 @@ project = 'Coverage.py'
# @@@ editable
copyright = "2009–2023, Ned Batchelder" # pylint: disable=redefined-builtin
# The short X.Y.Z version.
-version = "7.2.2"
+version = "7.2.3"
# The full version, including alpha/beta/rc tags.
-release = "7.2.2"
+release = "7.2.3"
# The date of release, in "monthname day, year" format.
-release_date = "March 16, 2023"
+release_date = "April 6, 2023"
# @@@ end
rst_epilog = """
diff --git a/doc/index.rst b/doc/index.rst
index e5ac5a0a..b11dc90e 100644
--- a/doc/index.rst
+++ b/doc/index.rst
@@ -18,7 +18,7 @@ supported on:
.. PYVERSIONS
-* Python versions 3.7 through 3.12.0a6.
+* Python versions 3.7 through 3.12.0a7.
* PyPy3 7.3.11.
.. ifconfig:: prerelease