Skip to content

Commit

Permalink
build: prepping for 6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Jan 25, 2022
1 parent fb3f632 commit 97d78e6
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 11 deletions.
7 changes: 5 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ This list is detailed and covers changes in each pre-release version.
.. Version 9.8.1 — 2027-07-27
.. --------------------------
Unreleased
----------
.. _changes_63:

Version 6.3 — 2022-01-25
------------------------

- Feature: Added the ``lcov`` command to generate reports in LCOV format.
Thanks, `Bradley Burns <pull 1289_>`_. Closes issues `587 <issue 587_>`_
Expand Down Expand Up @@ -62,6 +64,7 @@ Unreleased
.. _pull 1289: https://github.com/nedbat/coveragepy/pull/1289
.. _pull 1304: https://github.com/nedbat/coveragepy/pull/1304


.. _changes_62:

Version 6.2 — 2021-11-26
Expand Down
2 changes: 1 addition & 1 deletion NOTICE.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Copyright 2001 Gareth Rees. All rights reserved.
Copyright 2004-2021 Ned Batchelder. All rights reserved.
Copyright 2004-2022 Ned Batchelder. All rights reserved.

Except where noted otherwise, this software is licensed under the Apache
License, Version 2.0 (the "License"); you may not use this work except in
Expand Down
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Documentation is on `Read the Docs`_. Code repository and issue tracker are on


**New in 6.x:** dropped support for Python 2.7, 3.5, and 3.6;
write data on SIGTERM;
added support for 3.10 match/case statements.


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


def _make_version(major, minor, micro, releaselevel, serial):
Expand Down
8 changes: 4 additions & 4 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,18 +57,18 @@

# General information about the project.
project = 'Coverage.py'
copyright = '2009\N{EN DASH}2021, Ned Batchelder' # CHANGEME # pylint: disable=redefined-builtin
copyright = '2009\N{EN DASH}2022, Ned Batchelder' # CHANGEME # pylint: disable=redefined-builtin

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = "6.2" # CHANGEME
version = "6.3" # CHANGEME
# The full version, including alpha/beta/rc tags.
release = "6.2" # CHANGEME
release = "6.3" # CHANGEME
# The date of release, in "monthname day, year" format.
release_date = "November 26, 2021" # CHANGEME
release_date = "January 25, 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.2, `described here`_.
apply.** The latest stable version is coverage.py 6.3, `described here`_.


.. _described here: http://coverage.readthedocs.io/
Expand Down
3 changes: 1 addition & 2 deletions howto.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
version_info = (4, 0, 2, "candidate", 1)
version_info = (4, 0, 2, "final", 0)
- Supported Python version numbers. Search for "PYVERSIONS".
- Python version number in classifiers in setup.py
- Copyright date in NOTICE.txt
- Update CHANGES.rst, including release date.
- don't forget the jump target
Expand All @@ -20,7 +19,7 @@
- Version, release, release_date and copyright date in doc/conf.py
- Look for CHANGEME comments
- Make sure the docs are cogged:
$ make cogdoc
$ make prebuild
- Don't forget the man page: doc/python-coverage.1.txt
- Check that the docs build correctly:
$ tox -e doc
Expand Down

0 comments on commit 97d78e6

Please sign in to comment.