Skip to content

Commit

Permalink
Merge pull request #414 from awslabs/release-updates
Browse files Browse the repository at this point in the history
Prepare crate releases
  • Loading branch information
tjkirch authored Sep 15, 2021
2 parents d15f687 + f37a0f7 commit 7aa4804
Show file tree
Hide file tree
Showing 9 changed files with 144 additions and 124 deletions.
223 changes: 110 additions & 113 deletions Cargo.lock

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions tough-kms/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3] - 2021-09-15
### Changes
- Update dependencies.

## [0.3.2] - 2021-08-24
### Changes
- Update `tough` dependency to 0.11.2
Expand Down Expand Up @@ -56,6 +60,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Everything!

[0.3.3]: https://github.com/awslabs/tough/compare/tough-kms-v0.3.2...tough-kms-v0.3.3
[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
Expand Down
4 changes: 2 additions & 2 deletions tough-kms/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tough-kms"
version = "0.3.2"
version = "0.3.3"
description = "Implements AWS KMS as a key source for TUF signing keys"
authors = ["Shailesh Gothi <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -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.2", path = "../tough", features = ["http"] }
tough = { version = "0.11.3", 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 }
Expand Down
5 changes: 5 additions & 0 deletions tough-ssm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3] - 2021-09-15
### Changes
- Update dependencies.

## [0.6.2] - 2021-08-24
### Changes
- Update `tough` dependency to 0.11.2
Expand Down Expand Up @@ -65,6 +69,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Everything!

[0.6.3]: https://github.com/awslabs/tough/compare/tough-ssm-v0.6.2...tough-ssm-v0.6.3
[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
Expand Down
4 changes: 2 additions & 2 deletions tough-ssm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tough-ssm"
version = "0.6.2"
version = "0.6.3"
description = "Implements AWS SSM as a key source for TUF signing keys"
authors = ["Zac Mrowicki <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -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.2", path = "../tough", features = ["http"] }
tough = { version = "0.11.3", 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 }
Expand Down
7 changes: 6 additions & 1 deletion tough/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.11.3] - 2021-09-15
### Changes
- Update dependencies.

## [0.11.2] - 2021-08-24
### Changes
- Add `Repository.cache_metadata` method. [#403]
Expand Down Expand Up @@ -145,7 +149,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.2...HEAD
[Unreleased]: https://github.com/awslabs/tough/compare/tough-v0.11.3...HEAD
[0.11.3]: https://github.com/awslabs/tough/compare/tough-v0.11.2...tough-v0.11.3
[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
Expand Down
2 changes: 1 addition & 1 deletion tough/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tough"
version = "0.11.2"
version = "0.11.3"
description = "The Update Framework (TUF) repository client"
authors = ["iliana destroyer of worlds <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down
10 changes: 9 additions & 1 deletion tuftool/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ 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.4] - 2021-09-15
### Changes
- Add ignore threshold flag. [#412]
- Update dependencies.

[#412]: https://github.com/awslabs/tough/pull/412

## [0.6.3] - 2021-08-24
### Changes
- Update `assert_cmd` dependency. [#402]
Expand Down Expand Up @@ -138,7 +145,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.3...develop
[Unreleased]: https://github.com/awslabs/tough/compare/tuftool-v0.6.4...develop
[0.6.4]: https://github.com/awslabs/tough/compare/tuftool-v0.6.3...tuftool-v0.6.4
[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
Expand Down
8 changes: 4 additions & 4 deletions tuftool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tuftool"
version = "0.6.3"
version = "0.6.4"
description = "Utility for creating and signing The Update Framework (TUF) repositories"
authors = ["iliana destroyer of worlds <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -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.2", path = "../tough", features = ["http"] }
tough-ssm = { version = "0.6.2", path = "../tough-ssm" }
tough-kms = { version = "0.3.2", path = "../tough-kms" }
tough = { version = "0.11.3", path = "../tough", features = ["http"] }
tough-ssm = { version = "0.6.3", path = "../tough-ssm" }
tough-kms = { version = "0.3.3", path = "../tough-kms" }
url = "2.1.0"
walkdir = "2.3.2"

Expand Down

0 comments on commit 7aa4804

Please sign in to comment.