diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-09-03 09:23:45 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-09-03 09:23:45 -0400 |
commit | 4d00a2f35570a16456f4e3d224d3a22bbc3f5984 (patch) | |
tree | 18f89791a963428c0565935204ff41c42cc5804a | |
parent | d7b20337e091075198c9c1efd726a9ac71957b26 (diff) | |
download | python-coveragepy-git-4d00a2f35570a16456f4e3d224d3a22bbc3f5984.tar.gz |
Polish up the change history for SQLite storage
-rw-r--r-- | CHANGES.rst | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 1a10a7d5..521d10ec 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -22,9 +22,16 @@ Unreleased can be created earlier than it used to. A large amount of code was refactored to support this change. -- The old data format is still available (for now) by setting the environment - variable COVERAGE_STORAGE=json. Please tell me if you think you need to keep - the JSON format. + - Because the data file is created differently than previous releases, you + may need ``parallel=true`` where you didn't before. + + - The old data format is still available (for now) by setting the environment + variable COVERAGE_STORAGE=json. Please tell me if you think you need to + keep the JSON format. + + - The database schema is guaranteed to change in the future, to support new + features. I'm looking for opinions about making the schema part of the + public API to coverage.py or not. - Development moved from `Bitbucket`_ to `GitHub`_. |