Skip to content

Commit

Permalink
build: prep for 6.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Jun 2, 2022
1 parent 9b9142e commit c930586
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 12 deletions.
8 changes: 5 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,15 @@ development at the same time, such as 4.5.x and 5.0.
.. When updating the "Unreleased" header to a specific version, use this
.. format. Don't forget the jump target:
..
.. .. _changes_981:
.. .. _changes_9-8-1:
..
.. Version 9.8.1 — 2027-07-27
.. --------------------------
Unreleased
----------
.. _changes_6-4-1:

Version 6.4.1 — 2022-06-02
--------------------------

- Greatly improved performance on PyPy, and other environments that need the
pure Python trace function. Thanks, Carl Friedrich Bolz-Tereick (`pull
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, 4, 1, "alpha", 0)
version_info = (6, 4, 1, "final", 0)


def _make_version(major, minor, micro, releaselevel, serial):
Expand Down
12 changes: 6 additions & 6 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = "6.4" # CHANGEME
# The full version, including alpha/beta/rc tags.
release = "6.4" # CHANGEME
# The date of release, in "monthname day, year" format.
release_date = "May 22, 2022" # CHANGEME
# The short X.Y.Z version. # CHANGEME
version = "6.4.1"
# The full version, including alpha/beta/rc tags. # CHANGEME
release = "6.4.1"
# The date of release, in "monthname day, year" format. # CHANGEME
release_date = "June 2, 2022"

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 @@ -18,7 +18,7 @@ supported on:

.. PYVERSIONS
* Python versions 3.7 through 3.11.0b1.
* Python versions 3.7 through 3.11.0b3.

* PyPy3 7.3.8.

Expand Down
3 changes: 2 additions & 1 deletion howto.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
- Python versions supported
- Update docs
- Python versions in doc/index.rst
- Version of latest stable release in doc/index.rst
- IF PRE-RELEASE:
- Version of latest stable release in doc/index.rst
- Version, release, release_date and copyright date in doc/conf.py
- Look for CHANGEME comments
- Make sure the docs are cogged:
Expand Down

0 comments on commit c930586

Please sign in to comment.