Skip to content

Commit

Permalink
docs: prep for 7.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Jan 26, 2024
1 parent 98cd671 commit ddc88f7
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 11 deletions.
12 changes: 8 additions & 4 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,21 @@ 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`_.

.. _issue 1732: https://github.com/nedbat/coveragepy/issues/1732


.. scriv-start-here
.. _changes_7-4-0:

Version 7.4.0 — 2023-12-27
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-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
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, 4, 1, "alpha", 0)
_dev = 1
version_info = (7, 4, 1, "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–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 = """
Expand Down

0 comments on commit ddc88f7

Please sign in to comment.