From 4d07ce0287659650a5e718f40958cd660d3c7bec Mon Sep 17 00:00:00 2001 From: Vladimir Diaz Date: Tue, 19 Jun 2018 16:28:20 -0400 Subject: [PATCH 1/2] Bump version number to 0.11.1 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 47af2cac51..4e08df5d9e 100755 --- a/setup.py +++ b/setup.py @@ -80,7 +80,7 @@ setup( name = 'tuf', - version = '0.11.0', + version = '0.11.1', description = 'A secure updater framework for Python', long_description = long_description, author = 'https://www.updateframework.com', From 48e0ecca5da6a275d562b42f6e77f98a0d62d4d7 Mon Sep 17 00:00:00 2001 From: Vladimir Diaz Date: Tue, 19 Jun 2018 17:17:33 -0400 Subject: [PATCH 2/2] Add entry in CHANGELOG.md for v0.11.1 Signed-off-by: Vladimir Diaz --- docs/CHANGELOG.md | 41 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 19b6ce754d..6bb628c783 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,6 +1,45 @@ # Changelog -## v.0.11.0 +## v0.11.1 + +* Prevent persistent freeze attack (pr [#737](https://github.com/theupdateframework/tuf/pull/737)). + +* Add --no-release option to CLI. + +* Issue deprecation warning for all_targets() and targets_of_role(). + +* Disable file logging, by default. + +* Tweak network settings (in settings.py) for production environments. + +* Add tuf.log.enable_file_logging() and tuf.log.disable_file_logging(). + +* Replace %xx escapes in URLs. + +* Support Appveyor (for Windows) with Continuous Integration. + +* Run unit tests in Python 3.4 & 3.5 under Appveyor. + +* Edit contact text to encourage users to report issues with specification. + +* Generate (w/ CLI) Ed25519 keys, by default. + +* Upgrade dependencies to latest versions. + +* Add requirements.in, which is used to generate the other requirement files. + +* Update list of adopters. + +* Convert README to Markdown. + +* Update installation instructions to note SSLib's optional dependencies + that should be installed to support RSA, ECDSA, etc. keys. + +* Add unit test for persistent freeze attack. + +* Update list of tasks in ROADMAP.md. + +## v0.11.0 Note: This is a backwards-incompatible pre-release.