diff options
| author | Ned Batchelder <nedbat@gmail.com> | 2014-10-01 07:32:19 -0400 |
|---|---|---|
| committer | Ned Batchelder <nedbat@gmail.com> | 2014-10-01 07:32:19 -0400 |
| commit | 9af6bd3df6db9288199b2dbf9e243d14e6dc6e01 (patch) | |
| tree | ce58d9307ea15167ffb9e8b40fa9e743bd430c04 /doc/changes.rst | |
| parent | 866c1262f241641768c21f328048164fe56ca331 (diff) | |
| parent | db8836e5d6c69b8861b1e5ffaf90e8215c02cad2 (diff) | |
| download | python-coveragepy-9af6bd3df6db9288199b2dbf9e243d14e6dc6e01.tar.gz | |
Merged in alex_gaynor/coveragepy/alex_gaynor/improve-performance-of-coverage-under-py-1411425050845 (pull request #40)
Improve performance of coverage under PyPy.
Diffstat (limited to 'doc/changes.rst')
| -rw-r--r-- | doc/changes.rst | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/doc/changes.rst b/doc/changes.rst index 3ddf889..97c3d8c 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -35,6 +35,31 @@ history, see the `CHANGES.txt`_ file in the source tree. .. _CHANGES.txt: http://bitbucket.org/ned/coveragepy/src/tip/CHANGES.txt +.. _changes_40: + +Version 4.0 pre-release --- 27 September 2014 +--------------------------------------------- + +- Python versions supported are now CPython 2.6, 2.7, 3.2, 3.3, and 3.4, and + PyPy 2.2. + +- Gevent, eventlet, and greenlet are now supported, closing `issue 149`_. + The ``concurrency`` setting specifies the concurrency library in use. Huge + thanks to Peter Portante for initial implementation, and to Joe Jevnik for + the final insight that completed the work. + +- Options are now also read from a setup.cfg file, if any. Sections are + prefixed with "coverage:", so the ``[run]`` options will be read from the + ``[coverage:run]`` section of setup.cfg. Finishes `issue 304`_. + +- The ``report`` command can now show missing branches when reporting on branch + coverage. Thanks, Steve Leonard. Closes `issue 230`_. + +.. _issue 149: https://bitbucket.org/ned/coveragepy/issue/149/coverage-gevent-looks-broken +.. _issue 230: https://bitbucket.org/ned/coveragepy/issue/230/show-line-no-for-missing-branches-in +.. _issue 304: https://bitbucket.org/ned/coveragepy/issue/304/attempt-to-get-configuration-from-setupcfg + + .. _changes_371: Version 3.7.1 --- 13 December 2013 |
