From 98052d5d199a43f1a0025e60a2c14aab6b934df7 Mon Sep 17 00:00:00 2001 From: Lukas Puehringer Date: Fri, 26 Feb 2021 09:12:25 +0100 Subject: [PATCH] Prepare 0.20.0 release Update CHANGELOG and setup.py for imminent release. Signed-off-by: Lukas Puehringer --- CHANGELOG.md | 14 ++++++++++++++ setup.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28bde6fb..18e06b80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## securesystemslib v0.20.0 + +### Added +* Add signing abstraction to facilitate custom implementations (#319) + +### Changed +* Refactor imports to allow vendoring for pip (#316) +* Limit GitHub Actions to avoid duplicate Dependabot builds (#335) +* Enhance GitHub Action reporting for ed25519 upstream check (#338) +* Bump dependencies: cryptography (#336) + +### Fixed +* Pad OpenPGP EdDSA signatures to avoid sporadic verification failures (#340) + ## securesystemslib v0.19.0 ### Added diff --git a/setup.py b/setup.py index 7f22a502..914e0d24 100644 --- a/setup.py +++ b/setup.py @@ -68,7 +68,7 @@ setup( name = 'securesystemslib', - version = '0.19.0', + version = '0.20.0', description = 'A library that provides cryptographic and general-purpose' ' routines for Secure Systems Lab projects at NYU', license = 'MIT',