Skip to content

Commit

Permalink
docs: prep for 7.6.11
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Feb 8, 2025
1 parent 27ee4ff commit 938d519
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
10 changes: 6 additions & 4 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,12 @@ upgrading your version of coverage.py.
.. Version 9.8.1 — 2027-07-27
.. --------------------------
Unreleased
----------
.. start-releases
.. _changes_7-6-11:

Version 7.6.11 — 2025-02-08
---------------------------

- Fix: a memory leak in CTracer has been fixed. The details are in `issue
1924`_ and `pytest-dev 676`_. This should reduce the memory footprint for
Expand All @@ -34,8 +38,6 @@ Unreleased
.. _issue 1924: https://github.com/nedbat/coveragepy/issues/1924
.. _pytest-dev 676: https://github.com/pytest-dev/pytest-cov/issues/676

.. start-releases
.. _changes_7-6-10:

Version 7.6.10 — 2024-12-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-2024 Ned Batchelder. All rights reserved.
Copyright 2004-2025 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
4 changes: 2 additions & 2 deletions coverage/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

# version_info: same semantics as sys.version_info.
# _dev: the .devN suffix if any.
version_info = (7, 6, 11, "alpha", 0)
_dev = 1
version_info = (7, 6, 11, "final", 0)
_dev = 0


def _make_version(
Expand Down
8 changes: 4 additions & 4 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@
# built documents.

# @@@ editable
copyright = "2009–2024, Ned Batchelder" # pylint: disable=redefined-builtin
copyright = "2009–2025, Ned Batchelder" # pylint: disable=redefined-builtin
# The short X.Y.Z version.
version = "7.6.10"
version = "7.6.11"
# The full version, including alpha/beta/rc tags.
release = "7.6.10"
release = "7.6.11"
# The date of release, in "monthname day, year" format.
release_date = "December 26, 2024"
release_date = "February 8, 2025"
# @@@ end

rst_epilog = f"""
Expand Down

0 comments on commit 938d519

Please sign in to comment.