From 9d4a99e66cae16aef53c808371913b761b27c71e Mon Sep 17 00:00:00 2001 From: Jussi Kukkonen Date: Tue, 4 Jun 2024 14:33:38 +0300 Subject: [PATCH] Prepare v1.1 This is a small release just to enable Sigstore support again. Signed-off-by: Jussi Kukkonen --- CHANGELOG.md | 9 +++++++++ securesystemslib/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c601f0a..a1d5716a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## securesystemslib v1.1.0 + +This is a small release that only re-enables the use of SigstoreSigner. +Note that SigstoreSigner and SigstoreKey are still not part of the default +set of supported signers & keys but now they can be enabled. + +### Changed +* SigstoreSigner: Re-enable compatibility with Sigstore (#781) + ## securesystemslib v1.0.0 Securesystemslib API is now considered stable. The core functionality is diff --git a/securesystemslib/__init__.py b/securesystemslib/__init__.py index 83a55f37..e0482f96 100755 --- a/securesystemslib/__init__.py +++ b/securesystemslib/__init__.py @@ -1,7 +1,7 @@ # pylint: disable=missing-module-docstring import logging -__version__ = "1.0.0" +__version__ = "1.1.0" # Configure a basic 'securesystemslib' top-level logger with a StreamHandler # (print to console) and the WARNING log level (print messages of type