Skip to content

Commit 52b5680

Browse files
committed
docs: prep for 7.0.0
1 parent be5f556 commit 52b5680

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

CHANGES.rst

+4-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@ development at the same time, such as 4.5.x and 5.0.
1717
.. Version 9.8.1 — 2027-07-27
1818
.. --------------------------
1919
20-
Unreleased
21-
----------
20+
.. _changes_7-0-0:
21+
22+
Version 7.0.0 — 2022-12-18
23+
--------------------------
2224

2325
Nothing yet.
2426

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Coverage.py runs on these versions of Python:
2828

2929
.. PYVERSIONS
3030
31-
* CPython 3.7 through 3.12.0a2
31+
* CPython 3.7 through 3.12.0a3
3232
* PyPy3 7.3.9.
3333

3434
Documentation is on `Read the Docs`_. Code repository and issue tracker are on

coverage/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
# version_info: same semantics as sys.version_info.
88
# _dev: the .devN suffix if any.
9-
version_info = (7, 0, 0, "beta", 2)
10-
_dev = 1
9+
version_info = (7, 0, 0, "final", 0)
10+
_dev = 0
1111

1212

1313
def _make_version(major, minor, micro, releaselevel="final", serial=0, dev=0):

doc/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@
6767
# The short X.Y.Z version.
6868
version = "7.0.0"
6969
# The full version, including alpha/beta/rc tags.
70-
release = "7.0.0b1"
70+
release = "7.0.0"
7171
# The date of release, in "monthname day, year" format.
72-
release_date = "December 3, 2022"
72+
release_date = "December 18, 2022"
7373
# @@@ end
7474

7575
rst_epilog = """

doc/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ supported on:
1818

1919
.. PYVERSIONS
2020
21-
* Python versions 3.7 through 3.12.0a2.
21+
* Python versions 3.7 through 3.12.0a3.
2222
* PyPy3 7.3.9.
2323

2424
.. ifconfig:: prerelease

howto.txt

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
version_info = (4, 0, 2, "beta", 1)
77
version_info = (4, 0, 2, "candidate", 1)
88
version_info = (4, 0, 2, "final", 0)
9+
- make sure: _dev = 0
910
- Supported Python version numbers. Search for "PYVERSIONS".
1011
- Update source files with release facts:
1112
$ make edit_for_release

0 commit comments

Comments
 (0)