From 7ed29634ba181aa7d119a47a1d154f73fce14e87 Mon Sep 17 00:00:00 2001 From: Lukas Puehringer Date: Thu, 12 Jan 2023 16:39:06 +0100 Subject: [PATCH] Prepare v0.26.0 release - bump version in __init__.py - add changelog entry Signed-off-by: Lukas Puehringer --- CHANGELOG.md | 25 +++++++++++++++++++++++++ securesystemslib/__init__.py | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6e7b737..9f99c00f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,29 @@ # Changelog + +## securesystemslib v0.26.0 + +### Added +* Private key URI schemes for signer instantiation (#456) +* Public key container class for signature verification (#456) +* Post-quantum sphincs+ signing scheme (#427) +* Hardware Security Module (HSM) signing (#472) +* Google Cloud KMS signing (#442, #480) + +### Changed +* Use pyproject.toml for build configuration (#253) +* Use hatchling as build backend (#484) +* Auto-format and lint all code (#439, #490) +* Various CI and build improvements (#459, #460, #476, #493, #464) + +### Removed +* Drop colorama optional dependency and colorized output support (#443) + +### Fixed +* Don't shell out to gpg on import (#437) +* Fix metaclass definition (#473) +* Make GPGSigner signatures specification compliant (#486) + + ## securesystemslib v0.25.0 ### Changed diff --git a/securesystemslib/__init__.py b/securesystemslib/__init__.py index e80cde7f..6cab7930 100755 --- a/securesystemslib/__init__.py +++ b/securesystemslib/__init__.py @@ -1,7 +1,7 @@ # pylint: disable=missing-module-docstring import logging -__version__ = "0.25.0" +__version__ = "0.26.0" # Configure a basic 'securesystemslib' top-level logger with a StreamHandler # (print to console) and the WARNING log level (print messages of type