diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-09-21 15:17:17 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-09-21 15:17:17 -0400 |
commit | 5d7ca92398a4bdf974d92aa19e90c1e918b6990f (patch) | |
tree | 54f28fff5a9217aa870c0db1988067c1974c65a4 | |
parent | 341e737bd5010ffd794b029b3051a7ae210bfef2 (diff) | |
download | python-coveragepy-git-5d7ca92398a4bdf974d92aa19e90c1e918b6990f.tar.gz |
Doc changes for 5.0a7
-rw-r--r-- | CHANGES.rst | 6 | ||||
-rw-r--r-- | README.rst | 6 | ||||
-rw-r--r-- | doc/conf.py | 2 | ||||
-rw-r--r-- | doc/index.rst | 6 | ||||
-rw-r--r-- | setup.py | 2 |
5 files changed, 9 insertions, 13 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index a97f2f27..aa76d551 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -17,8 +17,10 @@ development at the same time, like 4.5.x and 5.0. .. Version 7.8.1 --- 2021-07-27 .. ---------------------------- -Unreleased ----------- +.. _changes_50a7: + +Version 5.0a7 --- 2019-09-21 +---------------------------- - Data can now be "reported" in JSON format, for programmatic use, as requested in `issue 720`_. The new ``coverage json`` command writes raw and summarized @@ -20,7 +20,7 @@ library to determine which lines are executable, and which have been executed. Coverage.py runs on many versions of Python: * CPython 2.7. -* CPython 3.5 through alpha 3.8. +* CPython 3.5 through beta 3.8. * PyPy2 7.0 and PyPy3 7.0. * Jython 2.7.1, though not for reporting. * IronPython 2.7.7, though not for reporting. @@ -32,8 +32,8 @@ Documentation is on `Read the Docs`_. Code repository and issue tracker are on .. _GitHub: https://github.com/nedbat/coveragepy -**New in 5.0:** SQLite data storage, contexts, dropped support for Python 2.6, -3.3 and 3.4. +**New in 5.0:** SQLite data storage, JSON report, contexts, dropped support for +Python 2.6, 3.3 and 3.4. For Enterprise diff --git a/doc/conf.py b/doc/conf.py index 4baf66ac..2018b57e 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -61,7 +61,7 @@ copyright = u'2009\N{EN DASH}2019, Ned Batchelder.' # CHANGEME # pylint: di # The short X.Y version. version = '5.0' # CHANGEME # The full version, including alpha/beta/rc tags. -release = '5.0a6' # CHANGEME +release = '5.0a7' # CHANGEME # 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 d1eace30..78106b30 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -28,17 +28,13 @@ not. .. ifconfig:: prerelease - The latest version is coverage.py 5.0a6, released July 16, 2019. + The latest version is coverage.py 5.0a7, released September 21, 2019. It is supported on: * Python versions 2.7, 3.5, 3.6, 3.7, and beta 3.8. * PyPy2 7.0 and PyPy3 7.0. - * Jython 2.7.1, though only for running code, not reporting. - - * IronPython 2.7.7, though only for running code, not reporting. - **This is a pre-release build. The usual warnings about possible bugs apply.** The latest stable version is coverage.py 4.5.4, `described here`_. @@ -34,8 +34,6 @@ Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: Implementation :: CPython Programming Language :: Python :: Implementation :: PyPy -Programming Language :: Python :: Implementation :: Jython -Programming Language :: Python :: Implementation :: IronPython Topic :: Software Development :: Quality Assurance Topic :: Software Development :: Testing """ |