From a9c4cbac767e1e427b34648fb7a2ab2d111af1cb Mon Sep 17 00:00:00 2001 From: Vladimir Diaz Date: Mon, 30 Apr 2018 15:07:13 -0400 Subject: [PATCH 1/2] Update release version in setup.py Signed-off-by: Vladimir Diaz --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d8a2c4df61..67a6e6e006 100755 --- a/setup.py +++ b/setup.py @@ -80,7 +80,7 @@ setup( name = 'tuf', - version = '0.10.2', + version = '0.11.0', description = 'A secure updater framework for Python', long_description = long_description, author = 'https://www.updateframework.com', From bf5030e2bad38a795c126b8da7a471089e1528a1 Mon Sep 17 00:00:00 2001 From: Vladimir Diaz Date: Mon, 30 Apr 2018 15:08:02 -0400 Subject: [PATCH 2/2] Add v0.11.0 entry in CHANGELOG.md Signed-off-by: Vladimir Diaz --- docs/CHANGELOG.md | 68 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 2e2e421a50..19b6ce754d 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,73 @@ # Changelog +## v.0.11.0 + +Note: This is a backwards-incompatible pre-release. + +* Make significant improvements to execution speed of updater. + +* Resolve all of the unit test failures in Windows. + +* Add or revise many CLI options. + - Add --revoke + - Support ECDSA, RSA, and Ed25519 keys + - Fully support delegated roles + - Revise help descriptions + - Allow 2+ roles to delegate to the same role + - Add --remove + - Add --trust + - Remove obsolete code + - Add --distrust + - Allow any top-level role to be signed + - Allow multiple signing keys with --sign + - Rename default directories + - etc. + +* Revise CLI documentation, such as QUICKSTART.md. + +* Ensure consistent behavior between add_targets and add_target(). + +* Add a CLI doc that demonstrates more complex examples. + +* Move LICENSE files to the root directory. + +* Update dependencies. + +* Update TUTORIAL.md to fix links. + +* Fix bug where the latest consistent metadata is not loaded. + +* Modify the pyup update schedule from daily to weekly. + +* Add hashes to requirements.txt. + +* Update AUTHORS.txt and add organizations. + +* Replace deprecated 'cryptography' functions. + +* Remove dependency in dev-requirements.txt that causes error. + +* Ensure that the latest consistent metadata is added to Snapshot. + +* Tweak a few logger and exception messages. + +* Revise introductory text in README. + +* Update ADOPTERS.md and link to pages that cover each adoption. + +* Remove target paths in metadata that contain leading path separators. + +* Address Pylint/Bandit warnings for the CLI modules. + +* Replace calls to deprecated 'imp' module. + +* Fix bug where the hashing algorithms used to generate local KEYIDs does not + match the ones chosen by the repo. + +* Fix bug in tuf.sig.get_signature_status() where a given threshold is not used. + +* Refactor code that stores the previous keyids of a role. + ## v0.10.2 Note: This is a backwards-incompatible pre-release.