diff --git a/CHANGELOG.md b/CHANGELOG.md index a8427fc4..4c66f2cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## securesystemslib v0.10.9 + +* Add `debian` directory (and files) that can be used to package a .deb file. + +* Modify functions that generate or import keys so that the key file's path is + shown if the function prompts for a password. + +* Add colorama dependency. It is used to colorize some of the prompts. + +* Update dependencies to their latest version. + +* Support KEYID filenames for generated key files. KEYID filenames are used + if a filename is not specified. + +* Minor edits to comments, indentation, whitespace, etc. + +* Modify generate_rsa_key() so that leading and trailing newline characters + are stripped before generating the KEYID. This is done so that the + KEYID generated from imported keys match. Imported PEM keys are + stripped of any leading and trailing newline characters before the KEYID is + generated. + ## securesystemslib v0.10.8 * Drop support for Python 2.6 and 3.3 diff --git a/setup.py b/setup.py index bb51081c..53066696 100755 --- a/setup.py +++ b/setup.py @@ -68,7 +68,7 @@ setup( name = 'securesystemslib', - version = '0.10.8', + version = '0.10.9', description = 'A library that provides cryptographic and general-purpose routines for Secure Systems Lab projects at NYU', long_description = long_description, author = 'https://www.updateframework.com',