diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index fd4c662c81..e1c2fdcc9f 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,35 @@ # Changelog +## v0.16.0 +### Added +* Begin to document architectural and project-wide decisions as Architectural + Decision Records (ADRs) in docs/adr (#1182, #1203) +* Add Python 3.9 to the CI test matrix (#1200) +* Implement a class for Root metadata in the simple TUF role metadata model in + `tuf.api` (#1193) + +### Changed +* Bump dependencies: cryptography (#1189, #1190), requests (#1210), + urllib (#1212), cffi (#1222), certifi (#1201), securesystemslib (#1191) +* Simplify the test runner (`aggregate_tests`) and stop executing unit test + modules in a random order (#1187) +* Speed up indefinite freeze tests by removing `sleep()` calls (#1194) +* Adapt to securesystemslib changes in key generation interfaces (#1191) +* Migrate from travis-ci.org to travis-ci.com (#1208) +* Make metadata signatures ordered by keyid, to ensure deterministic signature + ordering in metadata files (#1217) +* Improve test reliability by using thread-safe `Queue`s, rather than files, + for process communication (#1198) +* Avoid reading an entire target file into memory when generating target file + hashes in `tuf.client.updater` (#1219) +* Remove use of an empty list (`[]`) as the default argument in a test + function (#1216) +* Simplified updater logic for downloading and verifying target files (#1202) + +### Fixed +* Fix threshold computation in `_verify_root_self_signed()` such that + signatures by the same root key count only once towards the threshold (#1218) + ## v0.15.0 ### Added * Simple TUF role metadata model in the `tuf.api` package for interacting with diff --git a/setup.py b/setup.py index c87e2292b4..92d3facfc5 100755 --- a/setup.py +++ b/setup.py @@ -78,7 +78,7 @@ setup( name = 'tuf', - version = '0.15.0', # If updating version, also update it in tuf/__init__.py + version = '0.16.0', # If updating version, also update it in tuf/__init__.py description = 'A secure updater framework for Python', long_description = long_description, long_description_content_type='text/markdown', diff --git a/tuf/__init__.py b/tuf/__init__.py index 6ae8b31db5..032529f99b 100755 --- a/tuf/__init__.py +++ b/tuf/__init__.py @@ -2,7 +2,7 @@ # setup.py has it hard-coded separately. # Currently, when the version is changed, it must be set in both locations. # TODO: Single-source the version number. -__version__ = "0.15.0" +__version__ = "0.16.0" # This reference implementation produces metadata intended to conform to # version 1.0.0 of the TUF specification, and is expected to consume metadata