Skip to content

Commit 225dd7c

Browse files
committed
Prep for 5.0b2
1 parent aec4473 commit 225dd7c

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

CHANGES.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ want to know what's different in 5.0 since 4.5.x, see :ref:`whatsnew5x`.
2121
.. Version 7.8.1 --- 2021-07-27
2222
.. ----------------------------
2323
24-
Unreleased
25-
----------
24+
25+
Version 5.0b2 --- 2019-12-08
26+
----------------------------
2627

2728
- An experimental ``[run] relative_files`` setting tells coverage to store
2829
relative file names in the data file. This makes it easier to run tests in

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ Documentation is on `Read the Docs`_. Code repository and issue tracker are on
3030
.. _GitHub: https://github.com/nedbat/coveragepy
3131

3232

33-
**New in 5.0:** SQLite data storage, JSON report, contexts, dropped support for
34-
Python 2.6, 3.3 and 3.4.
33+
**New in 5.0:** SQLite data storage, JSON report, contexts, relative filenames,
34+
dropped support for Python 2.6, 3.3 and 3.4.
3535

3636

3737
For Enterprise

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@
6868
# The short X.Y version.
6969
version = '5.0' # CHANGEME
7070
# The full version, including alpha/beta/rc tags.
71-
release = '5.0b1' # CHANGEME
71+
release = '5.0b2' # CHANGEME
7272
# The date of release, in "monthname day, year" format.
73-
release_date = 'November 11, 2019' # CHANGEME
73+
release_date = 'December 8, 2019' # CHANGEME
7474

7575
rst_epilog = """
7676
.. |release_date| replace:: {release_date}

howto.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@
1515
- Update docs
1616
- Version, date and Python versions in doc/index.rst
1717
- Version of latest stable release in doc/index.rst
18-
- Version and copyright date in doc/conf.py
18+
- Version, release, release_date and copyright date in doc/conf.py
1919
- Look for CHANGEME comments
2020
- Don't forget the man page: doc/python-coverage.1.txt
2121
- Check that the docs build correctly:
2222
$ tox -e doc
23+
there will be warnings about the readthedocs links being broken,
24+
because this version's docs haven't been published yet.
2325
- Done with changes to source files, check them in.
2426
- git push
2527
- Generate new sample_html to get the latest, incl footer version number:

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ commands =
6161
doc8 -q --ignore-path 'doc/_*' doc CHANGES.rst README.rst
6262
sphinx-build -b html -aqE doc doc/_build/html
6363
rst2html.py --strict README.rst doc/_build/trash
64-
sphinx-build -b html -b linkcheck -aEnq doc doc/_build/html
65-
sphinx-build -b html -b linkcheck -aEnQW doc doc/_build/html
64+
- sphinx-build -b html -b linkcheck -aEnq doc doc/_build/html
65+
- sphinx-build -b html -b linkcheck -aEnQW doc doc/_build/html
6666

6767
[testenv:lint]
6868
deps =

0 commit comments

Comments
 (0)