diff options
-rw-r--r-- | CHANGES.rst | 10 | ||||
-rw-r--r-- | README.rst | 2 | ||||
-rw-r--r-- | coverage/version.py | 4 | ||||
-rw-r--r-- | doc/conf.py | 6 | ||||
-rw-r--r-- | doc/index.rst | 2 |
5 files changed, 13 insertions, 11 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index b4060746..209eb6ad 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-2: + +Version 7.2.2 — 2023-03-16 +-------------------------- - Fix: if a virtualenv was created inside a source directory, and a sourced package was installed inside the virtualenv, then all of the third-party @@ -40,8 +44,6 @@ Unreleased .. _pull 1583: https://github.com/nedbat/coveragepy/pull/1583 -.. scriv-start-here - .. _changes_7-2-1: Version 7.2.1 — 2023-02-26 @@ -28,7 +28,7 @@ Coverage.py runs on these versions of Python: .. PYVERSIONS -* CPython 3.7 through 3.12.0a5 +* CPython 3.7 through 3.12.0a6 * 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 c0a0cbcf..c9e8d7f7 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, 2, "alpha", 0) -_dev = 1 +version_info = (7, 2, 2, "final", 0) +_dev = 0 def _make_version( diff --git a/doc/conf.py b/doc/conf.py index 13c8d928..59907127 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.1" +version = "7.2.2" # The full version, including alpha/beta/rc tags. -release = "7.2.1" +release = "7.2.2" # The date of release, in "monthname day, year" format. -release_date = "February 26, 2023" +release_date = "March 16, 2023" # @@@ end rst_epilog = """ diff --git a/doc/index.rst b/doc/index.rst index e416bb65..e5ac5a0a 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -18,7 +18,7 @@ supported on: .. PYVERSIONS -* Python versions 3.7 through 3.12.0a5. +* Python versions 3.7 through 3.12.0a6. * PyPy3 7.3.11. .. ifconfig:: prerelease |