Skip to content

Commit 97d78e6

Browse files
committed
build: prepping for 6.3
1 parent fb3f632 commit 97d78e6

File tree

7 files changed

+14
-11
lines changed

7 files changed

+14
-11
lines changed

CHANGES.rst

+5-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ This list is detailed and covers changes in each pre-release version.
1919
.. Version 9.8.1 — 2027-07-27
2020
.. --------------------------
2121
22-
Unreleased
23-
----------
22+
.. _changes_63:
23+
24+
Version 6.3 — 2022-01-25
25+
------------------------
2426

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

67+
6568
.. _changes_62:
6669

6770
Version 6.2 — 2021-11-26

NOTICE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Copyright 2001 Gareth Rees. All rights reserved.
2-
Copyright 2004-2021 Ned Batchelder. All rights reserved.
2+
Copyright 2004-2022 Ned Batchelder. All rights reserved.
33

44
Except where noted otherwise, this software is licensed under the Apache
55
License, Version 2.0 (the "License"); you may not use this work except in

README.rst

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Documentation is on `Read the Docs`_. Code repository and issue tracker are on
3232

3333

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

3738

coverage/version.py

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

1010

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

doc/conf.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -57,18 +57,18 @@
5757

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

6262
# The version info for the project you're documenting, acts as replacement for
6363
# |version| and |release|, also used in various other places throughout the
6464
# built documents.
6565
#
6666
# The short X.Y version.
67-
version = "6.2" # CHANGEME
67+
version = "6.3" # CHANGEME
6868
# The full version, including alpha/beta/rc tags.
69-
release = "6.2" # CHANGEME
69+
release = "6.3" # CHANGEME
7070
# The date of release, in "monthname day, year" format.
71-
release_date = "November 26, 2021" # CHANGEME
71+
release_date = "January 25, 2022" # CHANGEME
7272

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

doc/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ supported on:
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.2, `described here`_.
28+
apply.** The latest stable version is coverage.py 6.3, `described here`_.
2929

3030

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

howto.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
version_info = (4, 0, 2, "candidate", 1)
88
version_info = (4, 0, 2, "final", 0)
99
- Supported Python version numbers. Search for "PYVERSIONS".
10-
- Python version number in classifiers in setup.py
1110
- Copyright date in NOTICE.txt
1211
- Update CHANGES.rst, including release date.
1312
- don't forget the jump target
@@ -20,7 +19,7 @@
2019
- Version, release, release_date and copyright date in doc/conf.py
2120
- Look for CHANGEME comments
2221
- Make sure the docs are cogged:
23-
$ make cogdoc
22+
$ make prebuild
2423
- Don't forget the man page: doc/python-coverage.1.txt
2524
- Check that the docs build correctly:
2625
$ tox -e doc

0 commit comments

Comments
 (0)