From c0c21ca52fdd8060f4b6a1976c265e7782217acf Mon Sep 17 00:00:00 2001 From: Lukas Puehringer Date: Fri, 13 Oct 2023 10:23:07 +0200 Subject: [PATCH] Release python-tuf 3.1.0 * Update changelog * Bump version Signed-off-by: Lukas Puehringer --- docs/CHANGELOG.md | 18 ++++++++++++++++++ tuf/__init__.py | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index d9b7cee37b..dbeadb6256 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## v3.1.0 + +### Added +* Metadata API: move verify_delegate() to Root/Targets (#2378) + - *verify_delegate() on Metadata is now deprecated* +* Metadata API: add get_verification_result() as verbose alternative for + verify_delegate() (#2481) +* Metadata API: add MetaFile.from_data() convenience factory (#2273) + +### Changed +* Metadata API: change Root.roles type hint to Dict (#2411) +* Various minor improvements in tests (#2447, #2491), docs + (#2390, #2392, #2474) and build (#2389, #2453, #2479, #2488) + +### Removed +* build: Python 3.7 support (#2460) + + ## v3.0.0 The notable change in this release is #2165: The tuf.api.metadata.Key diff --git a/tuf/__init__.py b/tuf/__init__.py index 6dbf25d693..36723485d3 100755 --- a/tuf/__init__.py +++ b/tuf/__init__.py @@ -5,4 +5,4 @@ """ # This value is used in the requests user agent. -__version__ = "3.0.0" +__version__ = "3.1.0"