Skip to content

Commit 0f99e89

Browse files
committed
build: prep for 6.3.2
1 parent 84ea58f commit 0f99e89

File tree

6 files changed

+12
-9
lines changed

6 files changed

+12
-9
lines changed

CHANGES.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@ development at the same time, such as 4.5.x and 5.0.
1717
.. Version 9.8.1 — 2027-07-27
1818
.. --------------------------
1919
20-
Unreleased
21-
----------
20+
.. _changes_632:
21+
22+
Version 6.3.2 — 2022-02-20
23+
--------------------------
2224

2325
- Fix: adapt to pypy3.9's decorator tracing behavior. It now traces function
2426
decorators like CPython 3.8: both the @-line and the def-line are traced.

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Coverage.py runs on these versions of Python:
2222
.. PYVERSIONS
2323
2424
* CPython 3.7 through 3.11.0a4.
25-
* PyPy3 7.3.7.
25+
* PyPy3 7.3.8.
2626

2727
Documentation is on `Read the Docs`_. Code repository and issue tracker are on
2828
`GitHub`_.

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, 3, 2, "alpha", 0)
8+
version_info = (6, 3, 2, "final", 0)
99

1010

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

doc/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@
6464
# built documents.
6565
#
6666
# The short X.Y version.
67-
version = "6.3.1" # CHANGEME
67+
version = "6.3.2" # CHANGEME
6868
# The full version, including alpha/beta/rc tags.
69-
release = "6.3.1" # CHANGEME
69+
release = "6.3.2" # CHANGEME
7070
# The date of release, in "monthname day, year" format.
71-
release_date = "February 1, 2022" # CHANGEME
71+
release_date = "February 20, 2022" # CHANGEME
7272

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

doc/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ supported on:
2020
2121
* Python versions 3.7 through 3.11.0a4.
2222

23-
* PyPy3 7.3.7.
23+
* PyPy3 7.3.8.
2424

2525
.. ifconfig:: prerelease
2626

2727
**This is a pre-release build. The usual warnings about possible bugs
28-
apply.** The latest stable version is coverage.py 6.3.1, `described here`_.
28+
apply.** The latest stable version is coverage.py 6.3.2, `described here`_.
2929

3030

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

howto.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
- Don't forget the man page: doc/python-coverage.1.txt
2525
- Check that the docs build correctly:
2626
$ tox -e doc
27+
- commit the release-prep changes
2728
- Generate new sample_html to get the latest, incl footer version number:
2829
$ make clean
2930
$ pip install -e .

0 commit comments

Comments
 (0)