diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 480ec5ad6e..52ea7b6a20 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,6 +2,16 @@ ## Unreleased +## v7.0.1 + +### Fixed + +* Fix hash method on Role and DelegatedRole (#2973) +* Fix incorrect dependency range for urllib3 (#2990) +* ngclient: Fix connection exception handling (#2964, #2993) +* ngclient: Fix incorrect delegation in diamond-shape case (#2978) +* ngclient: Avoid use of symlink on Windows: it requires privileges (#2981) + ## v7.0.0 This is a major release only because of a minor ngclient API tweak: there diff --git a/tuf/__init__.py b/tuf/__init__.py index 2b08224170..ae6910acb0 100644 --- a/tuf/__init__.py +++ b/tuf/__init__.py @@ -4,4 +4,4 @@ """TUF.""" # This value is used in the ngclient user agent. -__version__ = "7.0.0" +__version__ = "7.0.1"