diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-18 15:27:17 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-12-18 15:27:17 -0500 |
commit | 52b5680543d5da45b1bb0356d7538724acebd237 (patch) | |
tree | 80edb8c15267a921cdbbb638630da9f83834bb7e | |
parent | be5f556a2fef3921b9173d3ccf1b3f3220c795ec (diff) | |
download | python-coveragepy-git-52b5680543d5da45b1bb0356d7538724acebd237.tar.gz |
docs: prep for 7.0.0
-rw-r--r-- | CHANGES.rst | 6 | ||||
-rw-r--r-- | README.rst | 2 | ||||
-rw-r--r-- | coverage/version.py | 4 | ||||
-rw-r--r-- | doc/conf.py | 4 | ||||
-rw-r--r-- | doc/index.rst | 2 | ||||
-rw-r--r-- | howto.txt | 1 |
6 files changed, 11 insertions, 8 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 2afa3bf3..b2bcca08 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -17,8 +17,10 @@ development at the same time, such as 4.5.x and 5.0. .. Version 9.8.1 — 2027-07-27 .. -------------------------- -Unreleased ----------- +.. _changes_7-0-0: + +Version 7.0.0 — 2022-12-18 +-------------------------- Nothing yet. @@ -28,7 +28,7 @@ Coverage.py runs on these versions of Python: .. PYVERSIONS -* CPython 3.7 through 3.12.0a2 +* CPython 3.7 through 3.12.0a3 * PyPy3 7.3.9. Documentation is on `Read the Docs`_. Code repository and issue tracker are on diff --git a/coverage/version.py b/coverage/version.py index 5546d03d..11b27d3b 100644 --- a/coverage/version.py +++ b/coverage/version.py @@ -6,8 +6,8 @@ # version_info: same semantics as sys.version_info. # _dev: the .devN suffix if any. -version_info = (7, 0, 0, "beta", 2) -_dev = 1 +version_info = (7, 0, 0, "final", 0) +_dev = 0 def _make_version(major, minor, micro, releaselevel="final", serial=0, dev=0): diff --git a/doc/conf.py b/doc/conf.py index 3e949059..9947759d 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -67,9 +67,9 @@ copyright = "2009–2022, Ned Batchelder" # pylint: disable=redefined-builtin # The short X.Y.Z version. version = "7.0.0" # The full version, including alpha/beta/rc tags. -release = "7.0.0b1" +release = "7.0.0" # The date of release, in "monthname day, year" format. -release_date = "December 3, 2022" +release_date = "December 18, 2022" # @@@ end rst_epilog = """ diff --git a/doc/index.rst b/doc/index.rst index 8498cb89..4de74637 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -18,7 +18,7 @@ supported on: .. PYVERSIONS -* Python versions 3.7 through 3.12.0a2. +* Python versions 3.7 through 3.12.0a3. * PyPy3 7.3.9. .. ifconfig:: prerelease @@ -6,6 +6,7 @@ version_info = (4, 0, 2, "beta", 1) version_info = (4, 0, 2, "candidate", 1) version_info = (4, 0, 2, "final", 0) + - make sure: _dev = 0 - Supported Python version numbers. Search for "PYVERSIONS". - Update source files with release facts: $ make edit_for_release |