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',