diff options
-rw-r--r-- | CHANGES.rst | 6 | ||||
-rw-r--r-- | coverage/version.py | 2 | ||||
-rw-r--r-- | doc/conf.py | 2 | ||||
-rw-r--r-- | doc/index.rst | 4 | ||||
-rw-r--r-- | doc/whatsnew5x.rst | 2 |
5 files changed, 9 insertions, 7 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index a2b54f1e..e16f92f7 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -21,8 +21,10 @@ want to know what's different in 5.0 since 4.5.x, see :ref:`whatsnew5x`. .. Version 7.8.1 --- 2021-07-27 .. ---------------------------- -Unreleased ----------- +.. _changes_50b1: + +Version 5.0b1 --- 2019-11-11 +---------------------------- - The HTML and textual reports now have a ``--skip-empty`` option that skips files with no statements, notably ``__init__.py`` files. Thanks, Reya B. diff --git a/coverage/version.py b/coverage/version.py index 9ee21faf..c7353ca1 100644 --- a/coverage/version.py +++ b/coverage/version.py @@ -5,7 +5,7 @@ # This file is exec'ed in setup.py, don't import anything! # Same semantics as sys.version_info. -version_info = (5, 0, 0, 'alpha', 9) +version_info = (5, 0, 0, 'beta', 1) def _make_version(major, minor, micro, releaselevel, serial): diff --git a/doc/conf.py b/doc/conf.py index 1f7fc217..ea00b6ce 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -65,7 +65,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.0a8' # CHANGEME +release = '5.0b1' # 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 238d9953..484bad96 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -28,12 +28,12 @@ not. .. ifconfig:: prerelease - The latest version is coverage.py 5.0a8, released October 2, 2019. + The latest version is coverage.py 5.0b1, released November 11, 2019. It is supported on: * Python versions 2.7, 3.5, 3.6, 3.7, and 3.8. - * PyPy2 7.0 and PyPy3 7.0. + * PyPy2 7.2.0 and PyPy3 7.2.0. **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`_. diff --git a/doc/whatsnew5x.rst b/doc/whatsnew5x.rst index c709d384..9286d4ef 100644 --- a/doc/whatsnew5x.rst +++ b/doc/whatsnew5x.rst @@ -25,7 +25,7 @@ Open Questions Backward Incompatibilities -------------------------- -- Python 2.6 and 3.3 are no longer supported. +- Python 2.6, 3.3 and 3.4 are no longer supported. - The :class:`.CoverageData` interface is still public, but has changed. |