diff options
-rw-r--r-- | CHANGES.rst | 10 | ||||
-rw-r--r-- | coverage/version.py | 4 | ||||
-rw-r--r-- | doc/conf.py | 6 |
3 files changed, 11 insertions, 9 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index b7e8fd27..5714a6c8 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-1: + +Version 7.2.1 — 2023-02-26 +-------------------------- - Fix: the PyPI page had broken links to documentation pages, but no longer does, closing `issue 1566`_. @@ -30,8 +34,6 @@ Unreleased .. _issue 1566: https://github.com/nedbat/coveragepy/issues/1566 -.. scriv-start-here - .. _changes_7-2-0: Version 7.2.0 — 2023-02-22 diff --git a/coverage/version.py b/coverage/version.py index 95491ed5..2e4c472c 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, 1, "alpha", 0) -_dev = 1 +version_info = (7, 2, 1, "final", 0) +_dev = 0 def _make_version( diff --git a/doc/conf.py b/doc/conf.py index 32caae09..13c8d928 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -67,11 +67,11 @@ project = 'Coverage.py' # @@@ editable copyright = "2009–2023, Ned Batchelder" # pylint: disable=redefined-builtin # The short X.Y.Z version. -version = "7.2.0" +version = "7.2.1" # The full version, including alpha/beta/rc tags. -release = "7.2.0" +release = "7.2.1" # The date of release, in "monthname day, year" format. -release_date = "February 22, 2023" +release_date = "February 26, 2023" # @@@ end rst_epilog = """ |