Skip to content

Commit

Permalink
build: prep for 6.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed May 12, 2022
1 parent ce2d4ec commit c01fc71
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- "3.8"
- "3.9"
- "3.10"
- "3.11.0-alpha.5"
- "3.11.0-beta.1"
- "pypy-3.7"
exclude:
# Windows PyPy doesn't seem to work?
Expand Down
6 changes: 4 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ development at the same time, such as 4.5.x and 5.0.
.. Version 9.8.1 — 2027-07-27
.. --------------------------
Unreleased
----------
.. _changes_633:

Version 6.3.3 — 2022-05-12
--------------------------

- Fix: Coverage.py now builds successfully on CPython 3.11 (3.11.0b1) again.
Closes `issue 1367`_. Some results for generators may have changed.
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, 3, 3, "alpha", 0)
version_info = (6, 3, 3, "final", 0)


def _make_version(major, minor, micro, releaselevel, serial):
Expand Down
6 changes: 3 additions & 3 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@
# built documents.
#
# The short X.Y version.
version = "6.3.2" # CHANGEME
version = "6.3.3" # CHANGEME
# The full version, including alpha/beta/rc tags.
release = "6.3.2" # CHANGEME
release = "6.3.3" # CHANGEME
# The date of release, in "monthname day, year" format.
release_date = "February 20, 2022" # CHANGEME
release_date = "May 12, 2022" # CHANGEME

rst_epilog = """
.. |release_date| replace:: {release_date}
Expand Down
2 changes: 1 addition & 1 deletion doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ 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.3.2, `described here`_.
apply.** The latest stable version is coverage.py 6.3.3, `described here`_.


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

0 comments on commit c01fc71

Please sign in to comment.