From 72d0cea91babb44b3efae947aa4e611d16336bf0 Mon Sep 17 00:00:00 2001 From: Jussi Kukkonen Date: Fri, 4 Oct 2024 21:06:46 +0300 Subject: [PATCH] Prepare v5.1.0 release Signed-off-by: Jussi Kukkonen --- docs/CHANGELOG.md | 12 ++++++++++++ tuf/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 17f6d439ec..a1203eb956 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## v5.1.0 + +### Changed + +* ngclient: default user-agent was updated from "tuf/x.y.z" to "python-tuf/x.y.z" (#2632) +* ngclient: max_root_rotations default value was bumped to 256 to prevent a too small value + from creating issues in actual deployments were the embedded root is not easily + updateable (#2675) +* repository: do_snapshot() and do_timestamp() now always create new versions if current version + is not correctly signed (#2650) +* Various infrastructure and documentation improvements + ## v5.0.0 This release, most notably, marks stable securesystemslib v1.0.0 as minimum diff --git a/tuf/__init__.py b/tuf/__init__.py index 467bc0c73f..b09503961c 100644 --- a/tuf/__init__.py +++ b/tuf/__init__.py @@ -4,4 +4,4 @@ """TUF.""" # This value is used in the requests user agent. -__version__ = "5.0.0" +__version__ = "5.1.0"