summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-08-21 07:10:34 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-08-21 07:10:34 -0400
commitb254ef44d94e554820f269c1abd023e9c36c2d67 (patch)
tree37ad594330f3d6841b9211d175dc8e92c88f8be8 /CHANGES.txt
parent80a0e8e5743a125720903a87c60c96741b221bd7 (diff)
downloadpython-coveragepy-b254ef44d94e554820f269c1abd023e9c36c2d67.tar.gz
Changed hexversion to version_info, it's friendlier, and just as useful.
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 4f7c0fc..cfb9a99 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -30,12 +30,13 @@ Latest
will convert v3.x pickle data files to v4.x JSON data files. Thanks,
Alexander Todorov. Closes `issue 395`_.
-- A new version identifier is available, `coverage.hexversion`, with semantics
- identical to sys.hexversion.
+- A new version identifier is available, `coverage.version_info`, a plain tuple
+ of values similar to `sys.version_info`_.
.. _issue 392: https://bitbucket.org/ned/coveragepy/issues/392/run-append-doesnt-create-coverage-file
.. _issue 395: https://bitbucket.org/ned/coveragepy/issues/395/rfe-read-pickled-files-as-well-for
.. _issue 399: https://bitbucket.org/ned/coveragepy/issues/399/coverageexception-cant-combine-line-data
+.. _sys.version_info: https://docs.python.org/3/library/sys.html#sys.version_info
Version 4.0b1 --- 2 August 2015
@@ -352,7 +353,7 @@ Version 4.0a1 --- 27 September 2014
preventing paradoxical results, fixing `issue 284`_.
- The XML report will now create the output directory if need be, fixing
- `issue 285`_. Thanks Chris Rose.
+ `issue 285`_. Thanks, Chris Rose.
- HTML reports no longer raise UnicodeDecodeError if a Python file has
undecodable characters, fixing `issue 303`_ and `issue 331`_.