Skip to content

Commit

Permalink
Merge pull request #462 from jpculp/release-updates
Browse files Browse the repository at this point in the history
Prepare crate releases
  • Loading branch information
jpculp authored Apr 26, 2022
2 parents e756b26 + 0b8edf0 commit c6c19eb
Show file tree
Hide file tree
Showing 9 changed files with 59 additions and 17 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions tough-kms/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ 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.6] - 2022-04-26
### Changes
- Do not pin tokio version in Cargo.toml. [#451]
- Fix clippy warnings. [#455]
- Update dependencies.

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

## [0.3.5] - 2022-01-28
### Changes
- Update dependencies.
Expand Down Expand Up @@ -68,6 +77,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Everything!

[Unreleased]: https://github.com/awslabs/tough/compare/tough-kms-v0.3.6...develop
[0.3.6]: https://github.com/awslabs/tough/compare/tough-kms-v0.3.5...tough-kms-v0.3.6
[0.3.5]: https://github.com/awslabs/tough/compare/tough-kms-v0.3.4...tough-kms-v0.3.5
[0.3.4]: https://github.com/awslabs/tough/compare/tough-kms-v0.3.3...tough-kms-v0.3.4
[0.3.3]: https://github.com/awslabs/tough/compare/tough-kms-v0.3.2...tough-kms-v0.3.3
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.5"
version = "0.3.6"
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.12.0", path = "../tough", features = ["http"] }
tough = { version = "0.12.2", path = "../tough", features = ["http"] }
ring = { version = "0.16.16", features = ["std"] }
rusoto_core = { version = "0.48", optional = true, default-features = false }
rusoto_credential = { version = "0.48", optional = true }
Expand Down
9 changes: 9 additions & 0 deletions tough-ssm/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.6] - 2022-04-26
### Changes
- Do not pin tokio version in Cargo.toml. [#451]
- Update dependencies.

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

## [0.6.5] - 2022-01-28
### Changes
- Update dependencies.
Expand Down Expand Up @@ -77,6 +84,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Everything!

[Unreleased]: https://github.com/awslabs/tough/compare/tough-ssm-v0.6.6...develop
[0.6.6]: https://github.com/awslabs/tough/compare/tough-ssm-v0.6.5...tough-ssm-v0.6.6
[0.6.5]: https://github.com/awslabs/tough/compare/tough-ssm-v0.6.4...tough-ssm-v0.6.5
[0.6.4]: https://github.com/awslabs/tough/compare/tough-ssm-v0.6.3...tough-ssm-v0.6.4
[0.6.3]: https://github.com/awslabs/tough/compare/tough-ssm-v0.6.2...tough-ssm-v0.6.3
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.5"
version = "0.6.6"
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.12.0", path = "../tough", features = ["http"] }
tough = { version = "0.12.2", path = "../tough", features = ["http"] }
rusoto_core = { version = "0.48", optional = true, default-features = false }
rusoto_credential = { version = "0.48", optional = true }
rusoto_ssm = { version = "0.48", optional = true, default-features = false }
Expand Down
18 changes: 16 additions & 2 deletions tough/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ 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.12.2] - 2022-04-26
### Changes
- Blanket impl sign for references [#448]
- Fix clippy warnings [#455]
- Various other dependency updates

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

## [0.12.1] - 2022-01-28
### Fixes
- ECDSA keys now use the correct keytype name, thanks @flavio [#425]
Expand All @@ -13,6 +22,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Updated to snafu 0.7, thanks @shepmaster [#435]
- Various other dependency updates

[#425]: https://github.com/awslabs/tough/pull/425
[#426]: https://github.com/awslabs/tough/pull/426
[#435]: https://github.com/awslabs/tough/pull/435

## [0.12.0] - 2021-10-19
### Breaking Changes
- Target names are now specified with a struct, `TargetName`, instead of `String`.
Expand Down Expand Up @@ -96,7 +109,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.8.0] - 2020-07-20
### Breaking Changes
- The `HttpTransport` type and the `Read` and `Error` types that it uses have changed.
- Remove `root.json` from Snapshot metadata per [theupdateframework/specification#40](https://github.com/theupdateframework/specification/pull/40)
- Remove `root.json` from Snapshot metadata per [theupdateframework/specification#40](https://github.com/theupdateframework/specification/pull/40)

### Added
- Added HTTP retry logic.
Expand Down Expand Up @@ -167,7 +180,8 @@ For changes that require modification of calling code see #120 and #121.
### Added
- Everything!

[Unreleased]: https://github.com/awslabs/tough/compare/tough-v0.12.1...HEAD
[Unreleased]: https://github.com/awslabs/tough/compare/tough-v0.12.2...develop
[0.12.2]: https://github.com/awslabs/tough/compare/tough-v0.12.1...tough-v0.12.2
[0.12.1]: https://github.com/awslabs/tough/compare/tough-v0.12.0...tough-v0.12.1
[0.12.0]: https://github.com/awslabs/tough/compare/tough-v0.11.3...tough-v0.12.0
[0.11.3]: https://github.com/awslabs/tough/compare/tough-v0.11.2...tough-v0.11.3
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.12.1"
version = "0.12.2"
description = "The Update Framework (TUF) repository client"
authors = ["iliana destroyer of worlds <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down
12 changes: 10 additions & 2 deletions 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.7.2] - 2022-04-26
### Changes
- Fix clippy warnings. [#455]
- Update dependencies.

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

## [0.7.1] - 2022-01-28
### Changes
- Dependency updates.
Expand Down Expand Up @@ -75,7 +82,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Updated `tough` dependency to 0.10.0.
- Updated `tough-kms` dependency to 0.2.0 (which includes fix for [#263]).
- Updated `tough-ssm` to 0.5.0.
- Updated `tough-ssm` to 0.5.0.
- Other dependency updates.

[#222]: https://github.com/awslabs/tough/pull/222
Expand Down Expand Up @@ -158,7 +165,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.7.1...develop
[Unreleased]: https://github.com/awslabs/tough/compare/tuftool-v0.7.2...develop
[0.7.2]: https://github.com/awslabs/tough/compare/tuftool-v0.7.1...tuftool-v0.7.2
[0.7.1]: https://github.com/awslabs/tough/compare/tuftool-v0.7.0...tuftool-v0.7.1
[0.7.0]: https://github.com/awslabs/tough/compare/tuftool-v0.6.4...tuftool-v0.7.0
[0.6.4]: https://github.com/awslabs/tough/compare/tuftool-v0.6.3...tuftool-v0.6.4
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.7.1"
version = "0.7.2"
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.7", features = ["backtraces-impl-backtrace-crate"] }
structopt = "0.3"
tempfile = "3.3.0"
tokio = "~1.8" # LTS
tough = { version = "0.12.1", path = "../tough", features = ["http"] }
tough-ssm = { version = "0.6.5", path = "../tough-ssm" }
tough-kms = { version = "0.3.5", path = "../tough-kms" }
tough = { version = "0.12.2", path = "../tough", features = ["http"] }
tough-ssm = { version = "0.6.6", path = "../tough-ssm" }
tough-kms = { version = "0.3.6", path = "../tough-kms" }
url = "2.1.0"
walkdir = "2.3.2"

Expand Down

0 comments on commit c6c19eb

Please sign in to comment.