Skip to content

Commit

Permalink
Merge pull request #407 from zmrow/release-prep
Browse files Browse the repository at this point in the history
Prepare crate releases
  • Loading branch information
zmrow authored Aug 24, 2021
2 parents 1d223a1 + 0ee0442 commit cfc7689
Show file tree
Hide file tree
Showing 9 changed files with 41 additions and 15 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.

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.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]
Expand Down Expand Up @@ -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
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.1"
version = "0.3.2"
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.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 }
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.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]
Expand Down Expand Up @@ -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
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.1"
version = "0.6.2"
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.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 }
Expand Down
9 changes: 8 additions & 1 deletion tough/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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
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.1"
version = "0.11.2"
description = "The Update Framework (TUF) repository client"
authors = ["iliana destroyer of worlds <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down
11 changes: 10 additions & 1 deletion tuftool/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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
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.2"
version = "0.6.3"
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.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"

Expand Down

0 comments on commit cfc7689

Please sign in to comment.