diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-05-07 17:53:46 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-05-07 17:53:46 -0400 |
commit | f9cb7becf69b299f5f946944d855b7e964afec8d (patch) | |
tree | 810d46cfc2f60167fccbae156c8dca1a4a09cf01 | |
parent | 8558658bdebaa8e0d2885f97585ba8d9f5fb48ce (diff) | |
download | python-coveragepy-git-f9cb7becf69b299f5f946944d855b7e964afec8d.tar.gz |
Paperwork for 5.0a5coverage-5.0a5
-rw-r--r-- | CHANGES.rst | 6 | ||||
-rw-r--r-- | NOTICE.txt | 2 | ||||
-rw-r--r-- | README.rst | 4 | ||||
-rw-r--r-- | doc/conf.py | 4 | ||||
-rw-r--r-- | doc/index.rst | 10 |
5 files changed, 14 insertions, 12 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 286ace8a..22ed8974 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,8 +13,10 @@ Change history for Coverage.py .. Version 7.8.1 --- 2021-07-27 .. ---------------------------- -Unreleased ----------- +.. _changes_50a5: + +Version 5.0a5 --- 2019-05-07 +---------------------------- - Dynamic contexts can now be set two new ways, both thanks to Justas Sadzevičius. @@ -1,5 +1,5 @@ Copyright 2001 Gareth Rees. All rights reserved. -Copyright 2004-2018 Ned Batchelder. All rights reserved. +Copyright 2004-2019 Ned Batchelder. All rights reserved. Except where noted otherwise, this software is licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in @@ -35,8 +35,8 @@ 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 pre-alpha 3.8. -* PyPy2 6.0 and PyPy3 6.0. +* CPython 3.5 through alpha 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. diff --git a/doc/conf.py b/doc/conf.py index 7c2b2297..d8bce599 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -49,7 +49,7 @@ master_doc = 'index' # General information about the project. project = u'Coverage.py' -copyright = u'2009\N{EN DASH}2018, Ned Batchelder' # CHANGEME +copyright = u'2009\N{EN DASH}2019, Ned Batchelder' # CHANGEME # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -58,7 +58,7 @@ copyright = u'2009\N{EN DASH}2018, Ned Batchelder' # CHANGEME # The short X.Y version. version = '5.0' # CHANGEME # The full version, including alpha/beta/rc tags. -release = '5.0a4' # CHANGEME +release = '5.0a5' # 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 b06e805d..e1cdc1ad 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -28,12 +28,12 @@ not. .. ifconfig:: prerelease - The latest version is coverage.py 5.0a4, released November 25, 2018. + The latest version is coverage.py 5.0a5, released May 7, 2019. It is supported on: - * Python versions 2.7, 3.5, 3.6, 3.7, and pre-alpha 3.8. + * Python versions 2.7, 3.5, 3.6, 3.7, and alpha 3.8. - * PyPy2 6.0 and PyPy3 6.0. + * PyPy2 7.0 and PyPy3 7.0. * Jython 2.7.1, though only for running code, not reporting. @@ -102,12 +102,12 @@ Getting started is easy: .. ifconfig:: not prerelease - Then visit htmlcov/index.html in your browser, to see a + Then open htmlcov/index.html in your browser, to see a `report like this`_. .. ifconfig:: prerelease - Then visit htmlcov/index.html in your browser, to see a + Then open htmlcov/index.html in your browser, to see a `report like this one`_. .. _coverage.py page on the Python Package Index: https://pypi.org/project/coverage/ |