From 6f71afdc415d2fa701834706933ec741175d015c Mon Sep 17 00:00:00 2001 From: Jussi Kukkonen Date: Tue, 3 Oct 2023 10:36:05 +0300 Subject: [PATCH] Release 0.30.0 --- CHANGELOG.md | 16 ++++++++++++++++ securesystemslib/__init__.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6a61365..37cb041e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## securesystemslib v0.30.0 + +This release contains improved Sigstore support. + +### Changed + +* SigstoreSigner adapted to sigstore-python 2.0 API: This allows + improved UX where a new signing identity can be defined using + interactive credentials (browser login): + `SigstoreSigner.import_via_auth()` +* Documentation improvements + +### Removed + +* Python 3.7 is no longer supported + ## securesystemslib v0.29.0 This release is reaping the rewards of the new signer API with four(!) new diff --git a/securesystemslib/__init__.py b/securesystemslib/__init__.py index a4825475..0992841f 100755 --- a/securesystemslib/__init__.py +++ b/securesystemslib/__init__.py @@ -1,7 +1,7 @@ # pylint: disable=missing-module-docstring import logging -__version__ = "0.29.0" +__version__ = "0.30.0" # Configure a basic 'securesystemslib' top-level logger with a StreamHandler # (print to console) and the WARNING log level (print messages of type