Skip to content

Commit

Permalink
docs: prep for 7.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Apr 6, 2023
1 parent 6d5c4d4 commit 8cb979b
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 12 deletions.
10 changes: 6 additions & 4 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions coverage/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

# 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(
Expand Down
6 changes: 3 additions & 3 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@
# @@@ 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 = """
Expand Down
2 changes: 1 addition & 1 deletion doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8cb979b

Please sign in to comment.