From 2bb771a68b5d79f55b2f2e59e0c9893b1a7d9d54 Mon Sep 17 00:00:00 2001 From: Lukas Puehringer Date: Thu, 30 Nov 2023 14:18:07 +0100 Subject: [PATCH] Release securesystemslib v0.31.0 * Bump version * Bump changelog Signed-off-by: Lukas Puehringer --- CHANGELOG.md | 11 +++++++++++ securesystemslib/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37cb041e..ab825141 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## securesystemslib v0.31.0 + +### Added +* CryptoSigner: create from `cryptography` private key with new constructor (#675) +* SSlibKey: create from `cryptography` public key with new `from_crypto` method (#678) +* Release: auto-release with PyPI Trusted Publishing (#683) +* Docs to migrate legacy key files (#658) + +### Removed +* Removed `SSlibKey.from_pem` factory method in favor of `from_crypto` (#678) + ## securesystemslib v0.30.0 This release contains improved Sigstore support. diff --git a/securesystemslib/__init__.py b/securesystemslib/__init__.py index 0992841f..a8daf5ba 100755 --- a/securesystemslib/__init__.py +++ b/securesystemslib/__init__.py @@ -1,7 +1,7 @@ # pylint: disable=missing-module-docstring import logging -__version__ = "0.30.0" +__version__ = "0.31.0" # Configure a basic 'securesystemslib' top-level logger with a StreamHandler # (print to console) and the WARNING log level (print messages of type