summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2022-10-31 05:47:37 -0400
committerNed Batchelder <ned@nedbatchelder.com>2022-10-31 05:47:37 -0400
commit64559a06b39f6f13380edc1efb001216e187a6e6 (patch)
tree8a807d1feae26da8977e16107ef8f214ee7e5669
parent1291388bfe5e9639ebb05dce0b76e45a0b2e623a (diff)
downloadpython-coveragepy-git-64559a06b39f6f13380edc1efb001216e187a6e6.tar.gz
docs: prep for 6.6.0b16.6.0b1
-rw-r--r--CHANGES.rst16
-rw-r--r--coverage/version.py2
-rw-r--r--doc/conf.py6
-rw-r--r--doc/index.rst2
4 files changed, 16 insertions, 10 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index ea5e0acf..ffac98d4 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -17,12 +17,18 @@ development at the same time, such as 4.5.x and 5.0.
.. Version 9.8.1 — 2027-07-27
.. --------------------------
-Unreleased
-----------
+.. _changes_6-6-0b1:
-- Fixes to file pattern matching, fixing `issue 1407`_. Previously, `*` would
- incorrectly match directory separators, making precise matching difficult.
- This is now fixed.
+Version 6.6.0b1 — 2022-10-31
+----------------------------
+
+- Changes to file pattern matching, which might require updating your
+ configuration:
+
+ - Previously, ``*`` would incorrectly match directory separators, making
+ precise matching difficult. This is now fixed, closing `issue 1407`_.
+
+ - Now ``**`` matches any number of nested directories, including none.
- Improvements to combining data files when using the
:ref:`config_run_relative_files` setting:
diff --git a/coverage/version.py b/coverage/version.py
index 7e861f4b..b060cd93 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, 5, 1, "alpha", 0)
+version_info = (6, 6, 0, "beta", 1)
def _make_version(major, minor, micro, releaselevel, serial):
diff --git a/doc/conf.py b/doc/conf.py
index 38b8f0fe..3dd12db2 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -65,11 +65,11 @@ project = 'Coverage.py'
# @@@ editable
copyright = "2009–2022, Ned Batchelder" # pylint: disable=redefined-builtin
# The short X.Y.Z version.
-version = "6.5.0"
+version = "6.6.0"
# The full version, including alpha/beta/rc tags.
-release = "6.5.0"
+release = "6.6.0b1"
# The date of release, in "monthname day, year" format.
-release_date = "September 29, 2022"
+release_date = "October 31, 2022"
# @@@ end
rst_epilog = """
diff --git a/doc/index.rst b/doc/index.rst
index 3191c548..fc0dbdc9 100644
--- a/doc/index.rst
+++ b/doc/index.rst
@@ -24,7 +24,7 @@ supported on:
.. ifconfig:: prerelease
**This is a pre-release build. The usual warnings about possible bugs
- apply.** The latest stable version is coverage.py 6.4, `described here`_.
+ apply.** The latest stable version is coverage.py 6.5.0, `described here`_.
.. _described here: http://coverage.readthedocs.io/