Skip to content

Commit

Permalink
build: prep for 6.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Oct 11, 2021
1 parent 19bb1f8 commit a3921d2
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
7 changes: 5 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@ This list is detailed and covers changes in each pre-release version.
.. Version 9.8.1 --- 2027-07-27
.. ----------------------------
Unreleased
----------
.. _changes_602:

Version 6.0.2 --- 2021-10-11
----------------------------

- Namespace packages being measured weren't properly handled by the new code
that ignores third-party packages. If the namespace package was installed, it
Expand Down
2 changes: 1 addition & 1 deletion coverage/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# This file is exec'ed in setup.py, don't import anything!

# Same semantics as sys.version_info.
version_info = (6, 0, 2, "alpha", 0)
version_info = (6, 0, 2, "final", 0)


def _make_version(major, minor, micro, releaselevel, serial):
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@
# The short X.Y version.
version = "6.0" # CHANGEME
# The full version, including alpha/beta/rc tags.
release = "6.0.1" # CHANGEME
release = "6.0.2" # CHANGEME
# The date of release, in "monthname day, year" format.
release_date = "October 6, 2021" # CHANGEME
release_date = "October 11, 2021" # CHANGEME

rst_epilog = """
.. |release_date| replace:: {release_date}
Expand Down
3 changes: 2 additions & 1 deletion doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ supported on:
.. ifconfig:: prerelease

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


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

Expand Down
4 changes: 2 additions & 2 deletions howto.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@
- Tag the tree
$ git tag -a 3.0.1
$ git push --follow-tags
- Update GitHub releases:
$ make github_releases
- Bump version:
- coverage/version.py
- increment version number
Expand All @@ -65,8 +67,6 @@
- CHANGES.rst
- add an "Unreleased" section to the top.
$ git push
- Update GitHub releases:
$ make github_releases
- Update readthedocs
- @ https://readthedocs.org/projects/coverage/versions/
- find the latest tag in the inactive list, edit it, make it active.
Expand Down

0 comments on commit a3921d2

Please sign in to comment.