diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-08-06 16:32:21 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-08-06 16:32:21 -0400 |
commit | 1da23c5bec55264ac4d754cb1c19322297ecdbdd (patch) | |
tree | 50ffbc2855f8c37010be15e2cbeb1fef45b7f08f | |
parent | 616d963b390e94e12a9321b32e10c00e6da4e27d (diff) | |
download | python-coveragepy-git-1da23c5bec55264ac4d754cb1c19322297ecdbdd.tar.gz |
docs: prep for 6.4.3
-rw-r--r-- | CHANGES.rst | 6 | ||||
-rw-r--r-- | README.rst | 2 | ||||
-rw-r--r-- | coverage/version.py | 2 | ||||
-rw-r--r-- | doc/conf.py | 6 | ||||
-rw-r--r-- | doc/index.rst | 2 |
5 files changed, 10 insertions, 8 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index d04e2905..1661f44f 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_6-4-3: + +Version 6.4.3 — 2022-08-06 +-------------------------- - Fix a failure when combining data files if the file names contained glob-like patterns (`pull 1405`_). Thanks, Michael Krebs and Benjamin @@ -27,7 +27,7 @@ Coverage.py runs on these versions of Python: .. PYVERSIONS -* CPython 3.7 through 3.11.0b4. +* CPython 3.7 through 3.11.0b5. * PyPy3 7.3.8. Documentation is on `Read the Docs`_. Code repository and issue tracker are on diff --git a/coverage/version.py b/coverage/version.py index cb4b80a2..fd7d0dec 100644 --- a/coverage/version.py +++ b/coverage/version.py @@ -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, 4, 3, "alpha", 0) +version_info = (6, 4, 3, "final", 0) def _make_version(major, minor, micro, releaselevel, serial): diff --git a/doc/conf.py b/doc/conf.py index f671ef4e..cca82316 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -64,11 +64,11 @@ copyright = '2009\N{EN DASH}2022, Ned Batchelder' # CHANGEME # pylint: di # built documents. # # The short X.Y.Z version. # CHANGEME -version = "6.4.2" +version = "6.4.3" # The full version, including alpha/beta/rc tags. # CHANGEME -release = "6.4.2" +release = "6.4.3" # The date of release, in "monthname day, year" format. # CHANGEME -release_date = "July 12, 2022" +release_date = "August 6, 2022" rst_epilog = """ .. |release_date| replace:: {release_date} diff --git a/doc/index.rst b/doc/index.rst index fd2b2b8c..8bc8e83d 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -18,7 +18,7 @@ supported on: .. PYVERSIONS -* Python versions 3.7 through 3.11.0b4. +* Python versions 3.7 through 3.11.0b5. * PyPy3 7.3.8. |