Skip to content

Commit a3921d2

Browse files
committed
build: prep for 6.0.2
1 parent 19bb1f8 commit a3921d2

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

CHANGES.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@ This list is detailed and covers changes in each pre-release version.
1919
.. Version 9.8.1 --- 2027-07-27
2020
.. ----------------------------
2121
22-
Unreleased
23-
----------
22+
23+
.. _changes_602:
24+
25+
Version 6.0.2 --- 2021-10-11
26+
----------------------------
2427

2528
- Namespace packages being measured weren't properly handled by the new code
2629
that ignores third-party packages. If the namespace package was installed, it

coverage/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# This file is exec'ed in setup.py, don't import anything!
66

77
# Same semantics as sys.version_info.
8-
version_info = (6, 0, 2, "alpha", 0)
8+
version_info = (6, 0, 2, "final", 0)
99

1010

1111
def _make_version(major, minor, micro, releaselevel, serial):

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@
6767
# The short X.Y version.
6868
version = "6.0" # CHANGEME
6969
# The full version, including alpha/beta/rc tags.
70-
release = "6.0.1" # CHANGEME
70+
release = "6.0.2" # CHANGEME
7171
# The date of release, in "monthname day, year" format.
72-
release_date = "October 6, 2021" # CHANGEME
72+
release_date = "October 11, 2021" # CHANGEME
7373

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

doc/index.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ supported on:
2323
.. ifconfig:: prerelease
2424

2525
**This is a pre-release build. The usual warnings about possible bugs
26-
apply.** The latest stable version is coverage.py 6.0.1, `described here`_.
26+
apply.** The latest stable version is coverage.py 6.0.2, `described here`_.
27+
2728

2829
.. _described here: http://coverage.readthedocs.io/
2930

howto.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@
5757
- Tag the tree
5858
$ git tag -a 3.0.1
5959
$ git push --follow-tags
60+
- Update GitHub releases:
61+
$ make github_releases
6062
- Bump version:
6163
- coverage/version.py
6264
- increment version number
@@ -65,8 +67,6 @@
6567
- CHANGES.rst
6668
- add an "Unreleased" section to the top.
6769
$ git push
68-
- Update GitHub releases:
69-
$ make github_releases
7070
- Update readthedocs
7171
- @ https://readthedocs.org/projects/coverage/versions/
7272
- find the latest tag in the inactive list, edit it, make it active.

0 commit comments

Comments
 (0)