diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/changes.rst | 22 | ||||
-rw-r--r-- | doc/conf.py | 2 | ||||
-rw-r--r-- | doc/index.rst | 3 |
3 files changed, 25 insertions, 2 deletions
diff --git a/doc/changes.rst b/doc/changes.rst index 5731d3c1..895a5f3a 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -44,6 +44,28 @@ history, see the `CHANGES.rst`_ file in the source tree. .. module:: coverage + +.. _changes_402: + +Version 4.0.2 --- 4 November 2015 +--------------------------------- + +- More work on supporting unusually encoded source. Fixed `issue 431`_. + +- Files or directories with non-ASCII characters are now handled properly, + fixing `issue 432`_. + +- Setting a trace function with sys.settrace was broken by a change in 4.0.1, + as reported in `issue 436`_. This is now fixed. + +- Officially support PyPy 4.0, which required no changes, just updates to the + docs. + +.. _issue 431: https://bitbucket.org/ned/coveragepy/issues/431/couldnt-parse-python-file-with-cp1252 +.. _issue 432: https://bitbucket.org/ned/coveragepy/issues/432/path-with-unicode-characters-various +.. _issue 436: https://bitbucket.org/ned/coveragepy/issues/436/disabled-coverage-ctracer-may-rise-from + + .. _changes_401: Version 4.0.1 --- 13 October 2015 diff --git a/doc/conf.py b/doc/conf.py index be00403a..f6cbf663 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -58,7 +58,7 @@ copyright = u'2009\N{EN DASH}2015, Ned Batchelder' # The short X.Y version. version = '4.0' # The full version, including alpha/beta/rc tags. -release = '4.0.1' +release = '4.0.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/doc/index.rst b/doc/index.rst index 6c0f7aae..119fa7a3 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -41,6 +41,7 @@ Coverage.py .. :history: 20150822T092900, Updated for 4.0b2 .. :history: 20150918T072700, Updated for 4.0 .. :history: 20151013T103200, Updated for 4.0.1 +.. :history: 20151104T050900, updated for 4.0.2 Coverage.py is a tool for measuring code coverage of Python programs. It @@ -53,7 +54,7 @@ not. .. ifconfig:: not prerelease - The latest version is coverage.py 4.0.1, released 13 October 2015. + The latest version is coverage.py 4.0.2, released 4 November 2015. It is supported on: * Python versions 2.6, 2.7, 3.3, 3.4, and 3.5 |