summaryrefslogtreecommitdiff
path: root/CHANGES.rst
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2022-05-22 18:53:51 -0400
committerNed Batchelder <ned@nedbatchelder.com>2022-05-22 18:58:04 -0400
commite6df5b39be55c44205ea67811bb812e085599d5e (patch)
treeb99a8b37aee50d5a60d4c5fdd37964de8ddb066d /CHANGES.rst
parentd849b2581b1b1dd52a6261568b0954a41210dd5b (diff)
downloadpython-coveragepy-git-6.4.tar.gz
fix: don't create a data file when just trying to read one. #13286.4
Diffstat (limited to 'CHANGES.rst')
-rw-r--r--CHANGES.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 7a200ee1..86d5b11e 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -41,6 +41,10 @@ Version 6.4 — 2022-05-22
- A new debug option ``debug=sqldata`` adds more detail to ``debug=sql``,
logging all the data being written to the database.
+- Previously, running ``coverage report`` (or any of the reporting commands) in
+ an empty directory would create a .coverage data file. Now they do not,
+ fixing `issue 1328`_.
+
- On Python 3.11, the ``[toml]`` extra no longer installs tomli, instead using
tomllib from the standard library. Thanks `Shantanu <pull 1359_>`_.
@@ -48,6 +52,7 @@ Version 6.4 — 2022-05-22
.. _issue 1310: https://github.com/nedbat/coveragepy/issues/1310
.. _issue 1323: https://github.com/nedbat/coveragepy/issues/1323
+.. _issue 1328: https://github.com/nedbat/coveragepy/issues/1328
.. _issue 1351: https://github.com/nedbat/coveragepy/issues/1351
.. _pull 1354: https://github.com/nedbat/coveragepy/pull/1354
.. _pull 1359: https://github.com/nedbat/coveragepy/pull/1359