diff --git a/Cargo.lock b/Cargo.lock index 64c5bcbf..1d4a54cf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1760,7 +1760,7 @@ dependencies = [ [[package]] name = "tough" -version = "0.11.1" +version = "0.11.2" dependencies = [ "chrono", "dyn-clone", @@ -1785,7 +1785,7 @@ dependencies = [ [[package]] name = "tough-kms" -version = "0.3.1" +version = "0.3.2" dependencies = [ "base64", "bytes", @@ -1804,7 +1804,7 @@ dependencies = [ [[package]] name = "tough-ssm" -version = "0.6.1" +version = "0.6.2" dependencies = [ "rusoto_core", "rusoto_credential", @@ -1856,7 +1856,7 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" [[package]] name = "tuftool" -version = "0.6.2" +version = "0.6.3" dependencies = [ "assert_cmd", "chrono", diff --git a/tough-kms/CHANGELOG.md b/tough-kms/CHANGELOG.md index 6b83980e..668ac6a1 100644 --- a/tough-kms/CHANGELOG.md +++ b/tough-kms/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.2] - 2021-08-24 +### Changes +- Update `tough` dependency to 0.11.2 + ## [0.3.1] - 2021-07-30 ### Changes - Update dependencies. [#363], [#364], [#365], [#366], [#367], [#379], [#381], [#382], [#384], [#391], [#393], [#396], [#398] @@ -52,6 +56,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Everything! +[0.3.2]: https://github.com/awslabs/tough/compare/tough-kms-v0.3.1...tough-kms-v0.3.2 [0.3.1]: https://github.com/awslabs/tough/compare/tough-kms-v0.3.0...tough-kms-v0.3.1 [0.3.0]: https://github.com/awslabs/tough/compare/tough-kms-v0.2.0...tough-kms-v0.3.0 [0.2.0]: https://github.com/awslabs/tough/compare/tough-kms-v0.1.1...tough-kms-v0.2.0 diff --git a/tough-kms/Cargo.toml b/tough-kms/Cargo.toml index 4e751206..4a25db31 100644 --- a/tough-kms/Cargo.toml +++ b/tough-kms/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tough-kms" -version = "0.3.1" +version = "0.3.2" description = "Implements AWS KMS as a key source for TUF signing keys" authors = ["Shailesh Gothi "] license = "MIT OR Apache-2.0" @@ -15,7 +15,7 @@ rusoto-native-tls = ["rusoto_core/native-tls", "rusoto_credential", "rusoto_kms/ rusoto-rustls = ["rusoto_core/rustls", "rusoto_credential", "rusoto_kms/rustls"] [dependencies] -tough = { version = "0.11.1", path = "../tough", features = ["http"] } +tough = { version = "0.11.2", path = "../tough", features = ["http"] } ring = { version = "0.16.16", features = ["std"] } rusoto_core = { version = "0.47", optional = true, default-features = false } rusoto_credential = { version = "0.47", optional = true } diff --git a/tough-ssm/CHANGELOG.md b/tough-ssm/CHANGELOG.md index 42dbceb9..593cb7e6 100644 --- a/tough-ssm/CHANGELOG.md +++ b/tough-ssm/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.6.2] - 2021-08-24 +### Changes +- Update `tough` dependency to 0.11.2 + ## [0.6.1] - 2021-07-30 ### Changes - Update dependencies. [#363], [#364], [#365], [#366], [#367], [#379], [#381], [#382], [#384], [#391], [#393], [#396], [#398] @@ -61,6 +65,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Everything! +[0.6.2]: https://github.com/awslabs/tough/compare/tough-ssm-v0.6.1...tough-ssm-v0.6.2 [0.6.1]: https://github.com/awslabs/tough/compare/tough-ssm-v0.6.0...tough-ssm-v0.6.1 [0.6.0]: https://github.com/awslabs/tough/compare/tough-ssm-v0.5.0...tough-ssm-v0.6.0 [0.5.0]: https://github.com/awslabs/tough/compare/tough-ssm-v0.4.0...tough-ssm-v0.5.0 diff --git a/tough-ssm/Cargo.toml b/tough-ssm/Cargo.toml index 611c27fe..5ec0e3f8 100644 --- a/tough-ssm/Cargo.toml +++ b/tough-ssm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tough-ssm" -version = "0.6.1" +version = "0.6.2" description = "Implements AWS SSM as a key source for TUF signing keys" authors = ["Zac Mrowicki "] license = "MIT OR Apache-2.0" @@ -15,7 +15,7 @@ rusoto-native-tls = ["rusoto_core/native-tls", "rusoto_credential", "rusoto_ssm/ rusoto-rustls = ["rusoto_core/rustls", "rusoto_credential", "rusoto_ssm/rustls"] [dependencies] -tough = { version = "0.11.1", path = "../tough", features = ["http"] } +tough = { version = "0.11.2", path = "../tough", features = ["http"] } rusoto_core = { version = "0.47", optional = true, default-features = false } rusoto_credential = { version = "0.47", optional = true } rusoto_ssm = { version = "0.47", optional = true, default-features = false } diff --git a/tough/CHANGELOG.md b/tough/CHANGELOG.md index 2be34d27..692089f3 100644 --- a/tough/CHANGELOG.md +++ b/tough/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.11.2] - 2021-08-24 +### Changes +- Add `Repository.cache_metadata` method. [#403] + +[#403]: https://github.com/awslabs/tough/pull/403 + ## [0.11.1] - 2021-07-30 ### Changes - Update dependencies. [#363], [#364], [#365], [#366], [#367], [#379], [#381], [#382], [#384], [#391], [#393], [#396], [#398] @@ -139,7 +145,8 @@ For changes that require modification of calling code see #120 and #121. ### Added - Everything! -[Unreleased]: https://github.com/awslabs/tough/compare/tough-v0.11.1...HEAD +[Unreleased]: https://github.com/awslabs/tough/compare/tough-v0.11.2...HEAD +[0.11.2]: https://github.com/awslabs/tough/compare/tough-v0.11.1...tough-v0.11.2 [0.11.1]: https://github.com/awslabs/tough/compare/tough-v0.11.0...tough-v0.11.1 [0.11.0]: https://github.com/awslabs/tough/compare/tough-v0.10.0...tough-v0.11.0 [0.10.0]: https://github.com/awslabs/tough/compare/tough-v0.9.0...tough-v0.10.0 diff --git a/tough/Cargo.toml b/tough/Cargo.toml index f0b76ff1..ce141ea6 100644 --- a/tough/Cargo.toml +++ b/tough/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tough" -version = "0.11.1" +version = "0.11.2" description = "The Update Framework (TUF) repository client" authors = ["iliana destroyer of worlds "] license = "MIT OR Apache-2.0" diff --git a/tuftool/CHANGELOG.md b/tuftool/CHANGELOG.md index 14000a1b..40cf2a37 100644 --- a/tuftool/CHANGELOG.md +++ b/tuftool/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.6.3] - 2021-08-24 +### Changes +- Update `assert_cmd` dependency. [#402] +- Add `clone` subcommand. [#404] + +[#402]: https://github.com/awslabs/tough/pull/402 +[#404]: https://github.com/awslabs/tough/pull/404 + ## [0.6.2] - 2021-07-30 ### Changes - Update dependencies. [#363], [#364], [#365], [#366], [#367], [#379], [#381], [#382], [#384], [#391], [#393], [#396], [#398] @@ -130,7 +138,8 @@ Major update: much of the logic in `tuftool` has been factored out and added to ### Added - Everything! -[Unreleased]: https://github.com/awslabs/tough/compare/tuftool-v0.6.2...develop +[Unreleased]: https://github.com/awslabs/tough/compare/tuftool-v0.6.3...develop +[0.6.3]: https://github.com/awslabs/tough/compare/tuftool-v0.6.2...tuftool-v0.6.3 [0.6.2]: https://github.com/awslabs/tough/compare/tuftool-v0.6.1...tuftool-v0.6.2 [0.6.1]: https://github.com/awslabs/tough/compare/tuftool-v0.6.0...tuftool-v0.6.1 [0.6.0]: https://github.com/awslabs/tough/compare/tuftool-v0.5.0...tuftool-v0.6.0 diff --git a/tuftool/Cargo.toml b/tuftool/Cargo.toml index d9cfa117..23830567 100644 --- a/tuftool/Cargo.toml +++ b/tuftool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tuftool" -version = "0.6.2" +version = "0.6.3" description = "Utility for creating and signing The Update Framework (TUF) repositories" authors = ["iliana destroyer of worlds "] license = "MIT OR Apache-2.0" @@ -36,9 +36,9 @@ snafu = { version = "0.6.10", features = ["backtraces-impl-backtrace-crate"] } structopt = "0.3" tempfile = "3.1.0" tokio = "~1.8" # LTS -tough = { version = "0.11.1", path = "../tough", features = ["http"] } -tough-ssm = { version = "0.6.1", path = "../tough-ssm" } -tough-kms = { version = "0.3.1", path = "../tough-kms" } +tough = { version = "0.11.2", path = "../tough", features = ["http"] } +tough-ssm = { version = "0.6.2", path = "../tough-ssm" } +tough-kms = { version = "0.3.2", path = "../tough-kms" } url = "2.1.0" walkdir = "2.3.2"