diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2023-04-25 08:51:02 -0600 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2023-04-25 08:51:02 -0600 |
commit | d6e621aa3f492ffb4f630a914cc79a392afb95a2 (patch) | |
tree | e0ee35889bc0c64ce9544239aa9e38e1486b5eae /doc | |
parent | c6610b30e8f01f6107e0fce07eca35c04b1c09ce (diff) | |
download | python-coveragepy-git-d6e621aa3f492ffb4f630a914cc79a392afb95a2.tar.gz |
docs: clean up for #1610. Thanks, Brian Grohe.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/index.rst | 2 | ||||
-rw-r--r-- | doc/migrating.rst (renamed from doc/migrations.rst) | 11 |
2 files changed, 8 insertions, 5 deletions
diff --git a/doc/index.rst b/doc/index.rst index 30ddf88b..2420aa6f 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -234,5 +234,5 @@ More information trouble faq Change history <changes> - Migrating version notes <migrations> + migrating sleepy diff --git a/doc/migrations.rst b/doc/migrating.rst index e618cdc0..7a5e65df 100644 --- a/doc/migrations.rst +++ b/doc/migrating.rst @@ -1,18 +1,21 @@ .. Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 .. For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt -.. _migrations: +.. _migrating: ========================== Migrating between versions ========================== +New major versions of coverage.py might require you to adjust your settings, +options, or other aspects of your use. This page details those changes. + .. _migrating_6x_7x: -Migrating 6.5.x — 7.0.x ------------------------ +Migrating from 6.x to 7.x +------------------------- -- The way that wildcards when specifying file paths work in certain cases has changed in 7.0.x: +- The way that wildcards when specifying file paths work in certain cases has changed in 7.x: - Previously, ``*`` would incorrectly match directory separators, making precise matching difficult. Patterns such as ``*tests/*`` |