Skip to content

Commit ecab7eb

Browse files
authored
Merge pull request #817 from mgsharm/develop
Prepare for release
2 parents 446a460 + 7cf66e9 commit ecab7eb

File tree

9 files changed

+72
-17
lines changed

9 files changed

+72
-17
lines changed

Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tough-kms/CHANGELOG.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.10.0] - 2024-09-04
8+
### Changes
9+
- Update `aws_config::BehaviorVersion` to `v2024_03_28` [#781]
10+
- Dependency updates [#759], [#763], [#765], [#778], [#780], [#802]
11+
12+
[#759]: https://github.com/awslabs/tough/pull/759
13+
[#763]: https://github.com/awslabs/tough/pull/763
14+
[#765]: https://github.com/awslabs/tough/pull/765
15+
[#778]: https://github.com/awslabs/tough/pull/778
16+
[#780]: https://github.com/awslabs/tough/pull/780
17+
[#781]: https://github.com/awslabs/tough/pull/781
18+
[#802]: https://github.com/awslabs/tough/pull/802
19+
720
## [0.9.0] - 2024-03-15
821

922
### Changes
@@ -133,7 +146,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
133146
### Added
134147
- Everything!
135148

136-
[Unreleased]: https://github.com/awslabs/tough/compare/tough-kms-v0.9.0...develop
149+
[Unreleased]: https://github.com/awslabs/tough/compare/tough-kms-v0.10.0...develop
150+
[0.10.0]: https://github.com/awslabs/tough/compare/tough-kms-v0.9.0...tough-kms-v0.10.0
137151
[0.9.0]: https://github.com/awslabs/tough/compare/tough-kms-v0.8.0...tough-kms-v0.9.0
138152
[0.8.0]: https://github.com/awslabs/tough/compare/tough-kms-v0.7.0...tough-kms-v0.8.0
139153
[0.7.0]: https://github.com/awslabs/tough/compare/tough-kms-v0.6.0...tough-kms-v0.7.0

tough-kms/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tough-kms"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
description = "Implements AWS KMS as a key source for TUF signing keys"
55
authors = ["Shailesh Gothi <gothisg@amazon.com>"]
66
license = "MIT OR Apache-2.0"
@@ -14,7 +14,7 @@ aws-sdk-rust = ["aws-sdk-rust-rustls"]
1414
aws-sdk-rust-rustls = ["aws-config/rustls", "aws-sdk-kms/rustls"]
1515

1616
[dependencies]
17-
tough = { version = "0.17", path = "../tough", features = ["http"] }
17+
tough = { version = "0.18", path = "../tough", features = ["http"] }
1818
ring = { version = "0.17", features = ["std"] }
1919
aws-sdk-kms = "1"
2020
aws-config = "1"

tough-ssm/CHANGELOG.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.13.0] - 2024-09-04
8+
### Changes
9+
- Update `aws_config::BehaviorVersion` to `v2024_03_28` [#781]
10+
- Dependency updates [#759], [#763], [#765], [#778], [#780], [#802]
11+
12+
[#759]: https://github.com/awslabs/tough/pull/759
13+
[#763]: https://github.com/awslabs/tough/pull/763
14+
[#765]: https://github.com/awslabs/tough/pull/765
15+
[#778]: https://github.com/awslabs/tough/pull/778
16+
[#780]: https://github.com/awslabs/tough/pull/780
17+
[#781]: https://github.com/awslabs/tough/pull/781
18+
[#802]: https://github.com/awslabs/tough/pull/802
19+
720
## [0.12.0] - 2024-03-15
821

922
### Changes
@@ -141,7 +154,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
141154
### Added
142155
- Everything!
143156

144-
[Unreleased]: https://github.com/awslabs/tough/compare/tough-ssm-v0.12.0...develop
157+
[Unreleased]: https://github.com/awslabs/tough/compare/tough-ssm-v0.13.0...develop
158+
[0.13.0]: https://github.com/awslabs/tough/compare/tough-ssm-v0.12.0...tough-ssm-v0.13.0
145159
[0.12.0]: https://github.com/awslabs/tough/compare/tough-ssm-v0.11.0...tough-ssm-v0.12.0
146160
[0.11.0]: https://github.com/awslabs/tough/compare/tough-ssm-v0.10.0...tough-ssm-v0.11.0
147161
[0.10.0]: https://github.com/awslabs/tough/compare/tough-ssm-v0.9.0...tough-ssm-v0.10.0

tough-ssm/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tough-ssm"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
description = "Implements AWS SSM as a key source for TUF signing keys"
55
authors = ["Zac Mrowicki <mrowicki@amazon.com>"]
66
license = "MIT OR Apache-2.0"
@@ -14,7 +14,7 @@ aws-sdk-rust = ["aws-sdk-rust-rustls"]
1414
aws-sdk-rust-rustls = ["aws-config/rustls", "aws-sdk-ssm/rustls"]
1515

1616
[dependencies]
17-
tough = { version = "0.17", path = "../tough", features = ["http"] }
17+
tough = { version = "0.18", path = "../tough", features = ["http"] }
1818
aws-sdk-ssm = "1"
1919
aws-config = "1"
2020
snafu = { version = "0.8", features = ["backtraces-impl-backtrace-crate"] }

tough/CHANGELOG.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.18.0] - 2024-09-04
8+
### Changes
9+
- timestamp.json meta can has optional fields (thanks @flavio) [#778]
10+
- Dependency updates [#763], [#765], [#780], [#802]
11+
12+
[#763]: https://github.com/awslabs/tough/pull/763
13+
[#765]: https://github.com/awslabs/tough/pull/765
14+
[#778]: https://github.com/awslabs/tough/pull/778
15+
[#780]: https://github.com/awslabs/tough/pull/780
16+
[#802]: https://github.com/awslabs/tough/pull/802
17+
718
## [0.17.1] - 2024-03-22
819
### Changes
920
- Adds support for "ecdsa" key type (thanks @jku) [#754]
@@ -268,7 +279,8 @@ For changes that require modification of calling code see #120 and #121.
268279
### Added
269280
- Everything!
270281

271-
[Unreleased]: https://github.com/awslabs/tough/compare/tough-v0.17.1...develop
282+
[Unreleased]: https://github.com/awslabs/tough/compare/tough-v0.18.0...develop
283+
[0.18.0]: https://github.com/awslabs/tough/compare/tough-v0.17.1...tough-v0.18.0
272284
[0.17.1]: https://github.com/awslabs/tough/compare/tough-v0.17.0...tough-v0.17.1
273285
[0.17.0]: https://github.com/awslabs/tough/compare/tough-v0.16.0...tough-v0.17.0
274286
[0.16.0]: https://github.com/awslabs/tough/compare/tough-v0.15.0...tough-v0.16.0

tough/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tough"
3-
version = "0.17.1"
3+
version = "0.18.0"
44
description = "The Update Framework (TUF) repository client"
55
authors = ["iliana destroyer of worlds <iweller@amazon.com>"]
66
license = "MIT OR Apache-2.0"

tuftool/CHANGELOG.md

+16-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.11.0] - 2024-09-04
8+
### Changes
9+
- Added a new ecdsa key that uses the new type ecdsa (thanks @kommendorkapten) [#755]
10+
- Dependency updates [#759], [#763], [#765], [#778], [#780], [#781], [#802]
11+
12+
[#755]: https://github.com/awslabs/tough/pull/755
13+
[#759]: https://github.com/awslabs/tough/pull/759
14+
[#763]: https://github.com/awslabs/tough/pull/763
15+
[#765]: https://github.com/awslabs/tough/pull/765
16+
[#778]: https://github.com/awslabs/tough/pull/778
17+
[#780]: https://github.com/awslabs/tough/pull/780
18+
[#781]: https://github.com/awslabs/tough/pull/781
19+
[#802]: https://github.com/awslabs/tough/pull/802
20+
721
## [0.10.3] - 2024-03-15
822
### Changes
923
- Update Clap v4 deprecations (thanks @kdnakt) [#750]
@@ -238,7 +252,8 @@ Major update: much of the logic in `tuftool` has been factored out and added to
238252
### Added
239253
- Everything!
240254

241-
[Unreleased]: https://github.com/awslabs/tough/compare/tuftool-v0.10.3...develop
255+
[Unreleased]: https://github.com/awslabs/tough/compare/tuftool-v0.11.0...develop
256+
[0.11.0]: https://github.com/awslabs/tough/compare/tuftool-v0.10.3...tuftool-v0.11.0
242257
[0.10.3]: https://github.com/awslabs/tough/compare/tuftool-v0.10.2...tuftool-v0.10.3
243258
[0.10.2]: https://github.com/awslabs/tough/compare/tuftool-v0.10.1...tuftool-v0.10.2
244259
[0.10.1]: https://github.com/awslabs/tough/compare/tuftool-v0.10.0...tuftool-v0.10.1

tuftool/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tuftool"
3-
version = "0.10.3"
3+
version = "0.11.0"
44
description = "Utility for creating and signing The Update Framework (TUF) repositories"
55
authors = ["iliana destroyer of worlds <iweller@amazon.com>"]
66
license = "MIT OR Apache-2.0"
@@ -34,9 +34,9 @@ simplelog = "0.12"
3434
snafu = { version = "0.8", features = ["backtraces-impl-backtrace-crate"] }
3535
tempfile = "3"
3636
tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread"] }
37-
tough = { version = "0.17", path = "../tough", features = ["http"] }
38-
tough-kms = { version = "0.9", path = "../tough-kms" }
39-
tough-ssm = { version = "0.12", path = "../tough-ssm" }
37+
tough = { version = "0.18", path = "../tough", features = ["http"] }
38+
tough-kms = { version = "0.10", path = "../tough-kms" }
39+
tough-ssm = { version = "0.13", path = "../tough-ssm" }
4040
url = "2"
4141
walkdir = "2"
4242

0 commit comments

Comments
 (0)