From 58178773a5c6dd3f71d79735828ef6d2ce4d2988 Mon Sep 17 00:00:00 2001 From: Lukas Puehringer Date: Mon, 17 Apr 2023 14:22:48 +0200 Subject: [PATCH] Prepare v0.28.0 release - bump version in __init__.py - add changelog entry Signed-off-by: Lukas Puehringer --- CHANGELOG.md | 22 ++++++++++++++++++++++ securesystemslib/__init__.py | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b375fc61..52df36c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## securesystemslib v0.28.0 + +### Added +* Signer: auto-keyid helper (#557) +* Signer: de/serialization helpers (#558) +* Signer: tests (#555, #556) +* Sigstore Signer: import methods (#535) + +### Changed +* HSMSigner: pre-hash data (#548) +* GCP Signer, HSM Signer: auto-keyid computation (#557) +* DSSE: serialize signature data as base64 for compliance (#565) + +### Removed +* Obsolete shebangs (#544, #545) +* Outdated schemes: md5, sha1 (#554) + +### Fixed +* Various test and CI fixes (#538, #541, #542, #543, #546) +* Minor SSlibKey.verify_signature error handling bug (#556) + + ## securesystemslib v0.27.0 ### Added diff --git a/securesystemslib/__init__.py b/securesystemslib/__init__.py index 7430f604..6bfbac95 100755 --- a/securesystemslib/__init__.py +++ b/securesystemslib/__init__.py @@ -1,7 +1,7 @@ # pylint: disable=missing-module-docstring import logging -__version__ = "0.27.0" +__version__ = "0.28.0" # Configure a basic 'securesystemslib' top-level logger with a StreamHandler # (print to console) and the WARNING log level (print messages of type