Skip to content

Commit

Permalink
build: prep for 6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Oct 3, 2021
1 parent 5a99516 commit e179cf6
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
6 changes: 4 additions & 2 deletions CHANGES.rst
Expand Up @@ -21,8 +21,10 @@ want to know what's different in 5.0 since 4.5.x, see :ref:`whatsnew5x`.
.. Version 9.8.1 --- 2027-07-27
.. ----------------------------
Unreleased
----------
.. _changes_60:

Version 6.0 --- 2021-10-03
--------------------------

- The ``coverage html`` command now prints a message indicating where the HTML
report was written. Fixes `issue 1195`_.
Expand Down
5 changes: 3 additions & 2 deletions README.rst
Expand Up @@ -19,7 +19,7 @@ library to determine which lines are executable, and which have been executed.

Coverage.py runs on these versions of Python:

* CPython 3.6 through 3.10 alpha.
* CPython 3.6 through 3.10.
* PyPy3 7.3.3.

Documentation is on `Read the Docs`_. Code repository and issue tracker are on
Expand All @@ -29,7 +29,8 @@ Documentation is on `Read the Docs`_. Code repository and issue tracker are on
.. _GitHub: https://github.com/nedbat/coveragepy


**New in 6.x:** dropped support for Python 2.7 and 3.5.
**New in 6.x:** dropped support for Python 2.7 and 3.5; added support for 3.10
match/case statements.


For Enterprise
Expand Down
2 changes: 1 addition & 1 deletion coverage/version.py
Expand Up @@ -5,7 +5,7 @@
# This file is exec'ed in setup.py, don't import anything!

# Same semantics as sys.version_info.
version_info = (6, 0, 0, "beta", 2)
version_info = (6, 0, 0, "final", 0)


def _make_version(major, minor, micro, releaselevel, serial):
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Expand Up @@ -67,9 +67,9 @@
# The short X.Y version.
version = "6.0" # CHANGEME
# The full version, including alpha/beta/rc tags.
release = "6.0b1" # CHANGEME
release = "6.0" # CHANGEME
# The date of release, in "monthname day, year" format.
release_date = "July 18, 2021" # CHANGEME
release_date = "October 3, 2021" # CHANGEME

rst_epilog = """
.. |release_date| replace:: {release_date}
Expand Down
4 changes: 2 additions & 2 deletions doc/index.rst
Expand Up @@ -16,14 +16,14 @@ not.
The latest version is coverage.py |release|, released |release_date|. It is
supported on:

* Python versions 3.6, 3.7, 3.8, 3.9, and 3.10 alpha.
* Python versions 3.6 through 3.10.

* PyPy3 7.3.3.

.. ifconfig:: prerelease

**This is a pre-release build. The usual warnings about possible bugs
apply.** The latest stable version is coverage.py 5.5, `described here`_.
apply.** The latest stable version is coverage.py 6.0, `described here`_.

.. _described here: http://coverage.readthedocs.io/

Expand Down

0 comments on commit e179cf6

Please sign in to comment.