Skip to content

Commit e8f453e

Browse files
authored
Merge pull request #835 from mgsharm/develop
Prepare for release
2 parents 4333b75 + c5f5653 commit e8f453e

File tree

11 files changed

+237
-182
lines changed

11 files changed

+237
-182
lines changed

Cargo.lock

Lines changed: 177 additions & 167 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

olpc-cjson/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ 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.1.4] - 2023-10-10
8+
### Changes
9+
- Fix 128bit integer serialization (thanks @aumetra) [#820]
10+
11+
[#820]: https://github.com/awslabs/tough/pull/820
12+
713
## [0.1.3] - 2023-03-02
814
### Changed
915
- Remove minor/patch versions from Cargo.tomls. [#573]
@@ -46,7 +52,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4652
### Added
4753
- Everything!
4854

49-
[Unreleased]: https://github.com/awslabs/tough/compare/olpc-cjson-v0.1.3...develop
55+
[Unreleased]: https://github.com/awslabs/tough/compare/olpc-cjson-v0.1.4...develop
56+
[0.1.4]: https://github.com/awslabs/tough/compare/olpc-cjson-v0.1.3...olpc-cjson-v0.1.4
5057
[0.1.3]: https://github.com/awslabs/tough/compare/olpc-cjson-v0.1.2...olpc-cjson-v0.1.3
5158
[0.1.2]: https://github.com/awslabs/tough/compare/olpc-cjson-v0.1.1...olpc-cjson-v0.1.2
5259
[0.1.1]: https://github.com/awslabs/tough/compare/olpc-cjson-v0.1.0...olpc-cjson-v0.1.1

olpc-cjson/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "olpc-cjson"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
description = "serde_json Formatter to serialize as OLPC-style canonical JSON"
55
authors = ["iliana destroyer of worlds <iweller@amazon.com>"]
66
license = "MIT OR Apache-2.0"

tough-kms/CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ 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-10-10
8+
### Changes
9+
- Add FIPS support [#828]
10+
- Dependency updates [#825], [#826]
11+
12+
[#825]: https://github.com/awslabs/tough/pull/825
13+
[#826]: https://github.com/awslabs/tough/pull/826
14+
[#828]: https://github.com/awslabs/tough/pull/828
15+
716
## [0.10.0] - 2024-09-04
817
### Changes
918
- Update `aws_config::BehaviorVersion` to `v2024_03_28` [#781]
@@ -146,7 +155,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
146155
### Added
147156
- Everything!
148157

149-
[Unreleased]: https://github.com/awslabs/tough/compare/tough-kms-v0.10.0...develop
158+
[Unreleased]: https://github.com/awslabs/tough/compare/tough-kms-v0.11.0...develop
159+
[0.11.0]: https://github.com/awslabs/tough/compare/tough-kms-v0.10.0...tough-kms-v0.11.0
150160
[0.10.0]: https://github.com/awslabs/tough/compare/tough-kms-v0.9.0...tough-kms-v0.10.0
151161
[0.9.0]: https://github.com/awslabs/tough/compare/tough-kms-v0.8.0...tough-kms-v0.9.0
152162
[0.8.0]: https://github.com/awslabs/tough/compare/tough-kms-v0.7.0...tough-kms-v0.8.0

tough-kms/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tough-kms"
3-
version = "0.10.0"
3+
version = "0.11.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"
@@ -15,7 +15,7 @@ aws-sdk-rust-rustls = ["aws-config/rustls", "aws-sdk-kms/rustls"]
1515
fips = ["aws-lc-rs/fips", "tough/fips"]
1616

1717
[dependencies]
18-
tough = { version = "0.18", path = "../tough", features = ["http"] }
18+
tough = { version = "0.19", path = "../tough", features = ["http"] }
1919
aws-lc-rs = "1"
2020
aws-sdk-kms = "1"
2121
aws-config = { version = "1", default-features = false, features = ["credentials-process"] }

tough-ssm/CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ 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.14.0] - 2024-10-10
8+
### Changes
9+
- Add FIPS support [#828]
10+
- Dependency updates [#826]
11+
12+
[#826]: https://github.com/awslabs/tough/pull/826
13+
[#828]: https://github.com/awslabs/tough/pull/828
14+
715
## [0.13.0] - 2024-09-04
816
### Changes
917
- Update `aws_config::BehaviorVersion` to `v2024_03_28` [#781]
@@ -154,7 +162,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
154162
### Added
155163
- Everything!
156164

157-
[Unreleased]: https://github.com/awslabs/tough/compare/tough-ssm-v0.13.0...develop
165+
[Unreleased]: https://github.com/awslabs/tough/compare/tough-ssm-v0.14.0...develop
166+
[0.14.0]: https://github.com/awslabs/tough/compare/tough-ssm-v0.13.0...tough-ssm-v0.14.0
158167
[0.13.0]: https://github.com/awslabs/tough/compare/tough-ssm-v0.12.0...tough-ssm-v0.13.0
159168
[0.12.0]: https://github.com/awslabs/tough/compare/tough-ssm-v0.11.0...tough-ssm-v0.12.0
160169
[0.11.0]: https://github.com/awslabs/tough/compare/tough-ssm-v0.10.0...tough-ssm-v0.11.0

tough-ssm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tough-ssm"
3-
version = "0.13.0"
3+
version = "0.14.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"
@@ -15,7 +15,7 @@ aws-sdk-rust-rustls = ["aws-config/rustls", "aws-sdk-ssm/rustls"]
1515
fips = ["tough/fips"]
1616

1717
[dependencies]
18-
tough = { version = "0.18", path = "../tough", features = ["http"] }
18+
tough = { version = "0.19", path = "../tough", features = ["http"] }
1919
aws-sdk-ssm = "1"
2020
aws-config = { version = "1", default-features = false, features = ["credentials-process"] }
2121
aws-smithy-experimental = { version = "0.1", features = ["crypto-aws-lc"] }

tough/CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ 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.19.0] - 2024-10-10
8+
### Changes
9+
- Add FIPS support [#828]
10+
- Dependency updates [#825]
11+
12+
[#825]: https://github.com/awslabs/tough/pull/825
13+
[#828]: https://github.com/awslabs/tough/pull/828
14+
715
## [0.18.0] - 2024-09-04
816
### Changes
917
- timestamp.json meta can has optional fields (thanks @flavio) [#778]
@@ -279,7 +287,8 @@ For changes that require modification of calling code see #120 and #121.
279287
### Added
280288
- Everything!
281289

282-
[Unreleased]: https://github.com/awslabs/tough/compare/tough-v0.18.0...develop
290+
[Unreleased]: https://github.com/awslabs/tough/compare/tough-v0.19.0...develop
291+
[0.19.0]: https://github.com/awslabs/tough/compare/tough-v0.18.0...tough-v0.19.0
283292
[0.18.0]: https://github.com/awslabs/tough/compare/tough-v0.17.1...tough-v0.18.0
284293
[0.17.1]: https://github.com/awslabs/tough/compare/tough-v0.17.0...tough-v0.17.1
285294
[0.17.0]: https://github.com/awslabs/tough/compare/tough-v0.16.0...tough-v0.17.0

tough/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tough"
3-
version = "0.18.0"
3+
version = "0.19.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

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ 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.12.0] - 2024-10-10
8+
### Changes
9+
- Add FIPS support [#828]
10+
- Dependency updates [#825], [#826]
11+
12+
[#825]: https://github.com/awslabs/tough/pull/825
13+
[#826]: https://github.com/awslabs/tough/pull/826
14+
[#828]: https://github.com/awslabs/tough/pull/828
15+
716
## [0.11.1] - 2024-09-10
817
### Changes
918
- Dependency updates [#822]
@@ -258,7 +267,8 @@ Major update: much of the logic in `tuftool` has been factored out and added to
258267
### Added
259268
- Everything!
260269

261-
[Unreleased]: https://github.com/awslabs/tough/compare/tuftool-v0.11.1...develop
270+
[Unreleased]: https://github.com/awslabs/tough/compare/tuftool-v0.12.0...develop
271+
[0.12.0]: https://github.com/awslabs/tough/compare/tuftool-v0.11.1...tuftool-v0.12.0
262272
[0.11.1]: https://github.com/awslabs/tough/compare/tuftool-v0.11.0...tuftool-v0.11.1
263273
[0.11.0]: https://github.com/awslabs/tough/compare/tuftool-v0.10.3...tuftool-v0.11.0
264274
[0.10.3]: https://github.com/awslabs/tough/compare/tuftool-v0.10.2...tuftool-v0.10.3

0 commit comments

Comments
 (0)