Skip to content

Commit

Permalink
docs: prep for 7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Dec 18, 2022
1 parent be5f556 commit 52b5680
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
6 changes: 4 additions & 2 deletions CHANGES.rst
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions coverage/version.py
Expand Up @@ -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):
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Expand Up @@ -67,9 +67,9 @@
# 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 = """
Expand Down
2 changes: 1 addition & 1 deletion doc/index.rst
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions howto.txt
Expand Up @@ -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
Expand Down

0 comments on commit 52b5680

Please sign in to comment.