diff --git a/CHANGES.rst b/CHANGES.rst index 55384553b..a65101ea6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -17,8 +17,14 @@ development at the same time, such as 4.5.x and 5.0. .. Version 9.8.1 — 2027-07-27 .. -------------------------- -Unreleased ----------- +.. scriv-start-here + +.. _changes_7-4-1: + +Version 7.4.1 — 2024-01-26 +-------------------------- + +- Python 3.13.0a3 is supported. - Fix: the JSON report now includes an explicit format version number, closing `issue 1732`_. @@ -26,8 +32,6 @@ Unreleased .. _issue 1732: https://github.com/nedbat/coveragepy/issues/1732 -.. scriv-start-here - .. _changes_7-4-0: Version 7.4.0 — 2023-12-27 diff --git a/NOTICE.txt b/NOTICE.txt index 68810cd4e..7376ffdda 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -1,5 +1,5 @@ Copyright 2001 Gareth Rees. All rights reserved. -Copyright 2004-2023 Ned Batchelder. All rights reserved. +Copyright 2004-2024 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 diff --git a/coverage/version.py b/coverage/version.py index b8541c8b7..2f953e709 100644 --- a/coverage/version.py +++ b/coverage/version.py @@ -8,8 +8,8 @@ # version_info: same semantics as sys.version_info. # _dev: the .devN suffix if any. -version_info = (7, 4, 1, "alpha", 0) -_dev = 1 +version_info = (7, 4, 1, "final", 0) +_dev = 0 def _make_version( diff --git a/doc/conf.py b/doc/conf.py index db21f3495..04ce4c0a6 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -65,13 +65,13 @@ # built documents. # @@@ editable -copyright = "2009–2023, Ned Batchelder" # pylint: disable=redefined-builtin +copyright = "2009–2024, Ned Batchelder" # pylint: disable=redefined-builtin # The short X.Y.Z version. -version = "7.4.0" +version = "7.4.1" # The full version, including alpha/beta/rc tags. -release = "7.4.0" +release = "7.4.1" # The date of release, in "monthname day, year" format. -release_date = "December 27, 2023" +release_date = "January 26, 2024" # @@@ end rst_epilog = """