diff options
-rw-r--r-- | CHANGES.rst | 6 | ||||
-rw-r--r-- | README.rst | 2 | ||||
-rw-r--r-- | doc/conf.py | 2 | ||||
-rw-r--r-- | doc/index.rst | 4 | ||||
-rw-r--r-- | howto.txt | 6 |
5 files changed, 11 insertions, 9 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 521d10ec..f54cecb6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,8 +14,10 @@ Change history for Coverage.py .. Version 7.8.1 --- 2021-07-27 .. ---------------------------- -Unreleased ----------- +.. _changes_50a2: + +Version 5.0a2 --- 2018-09-03 +---------------------------- - Coverage's data storage has changed. In version 4.x, .coverage files were basically JSON. Now, they are SQLite databases. This means the data file @@ -31,7 +31,7 @@ Documentation is on `Read the Docs`_. Code repository and issue tracker are on .. _GitHub: https://github.com/nedbat/coveragepy -**New in 5.0:** Dropped support for Python 2.6 and 3.3. +**New in 5.0:** SQLite data storage, dropped support for Python 2.6 and 3.3. New in 4.5: Configurator plug-ins. diff --git a/doc/conf.py b/doc/conf.py index 9936d1b9..a87047eb 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -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.0a1' # CHANGEME +release = '5.0a2' # 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 78496cdb..0a795011 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -77,8 +77,8 @@ not. .. ifconfig:: prerelease - The latest version is coverage.py 5.0a1, released June 5th 2018. It is - supported on: + The latest version is coverage.py 5.0a2, released September 3rd 2018. + It is supported on: * Python versions 2.7, 3.4, 3.5, 3.6, and 3.7. @@ -19,7 +19,7 @@ - Check that the docs build correctly: $ tox -e doc - Done with changes to source files, check them in. - - hg push + - git push - Generate new sample_html to get the latest, incl footer version number: make clean pip install -e . @@ -62,7 +62,7 @@ - Visit https://pypi.python.org/pypi?:action=pkg_edit&name=coverage : - show/hide the proper versions. - Tag the tree - - hg tag -m "Coverage 3.0.1" coverage-3.0.1 + - git tag coverage-3.0.1 - Bump version: - coverage/version.py - increment version number @@ -70,7 +70,7 @@ - set to alpha-0 if just released - CHANGES.rst - add an "Unreleased" section to the top. -- push hg changes +- push git changes - Update nedbatchelder.com - Blog post? - Update readthedocs |