Skip to content

Commit 27a8230

Browse files
committed
docs: prep for 7.13.2
1 parent 27d8daa commit 27a8230

4 files changed

Lines changed: 13 additions & 11 deletions

File tree

CHANGES.rst

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,12 @@ upgrading your version of coverage.py.
2020
.. Version 9.8.1 — 2027-07-27
2121
.. --------------------------
2222
23-
Unreleased
24-
----------
23+
.. start-releases
24+
25+
.. _changes_7-13-2:
26+
27+
Version 7.13.2 — 2026-01-25
28+
---------------------------
2529

2630
- Fix: when Python is installed via symlinks, for example with Homebrew, the
2731
standard library files could be incorrectly included in coverage reports.
@@ -35,8 +39,6 @@ Unreleased
3539
.. _issue 2117: https://github.com/coveragepy/coveragepy/issues/2117
3640

3741

38-
.. start-releases
39-
4042
.. _changes_7-13-1:
4143

4244
Version 7.13.1 — 2025-12-28

NOTICE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Copyright 2001 Gareth Rees. All rights reserved.
2-
Copyright 2004-2025 Ned Batchelder. All rights reserved.
2+
Copyright 2004-2026 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

coverage/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
# version_info: same semantics as sys.version_info.
1010
# _dev: the .devN suffix if any.
11-
version_info = (7, 13, 2, "alpha", 0)
12-
_dev = 1
11+
version_info = (7, 13, 2, "final", 0)
12+
_dev = 0
1313

1414

1515
def _make_version(

doc/conf.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@
6666
# built documents.
6767

6868
# @@@ editable
69-
copyright = "2009–2025, Ned Batchelder" # pylint: disable=redefined-builtin
69+
copyright = "2009–2026, Ned Batchelder" # pylint: disable=redefined-builtin
7070
# The short X.Y.Z version.
71-
version = "7.13.1"
71+
version = "7.13.2"
7272
# The full version, including alpha/beta/rc tags.
73-
release = "7.13.1"
73+
release = "7.13.2"
7474
# The date of release, in "monthname day, year" format.
75-
release_date = "December 28, 2025"
75+
release_date = "January 25, 2026"
7676
# @@@ end
7777

7878
rst_epilog = f"""

0 commit comments

Comments
 (0)