From 7558d31f17b69bce8785ffa833c575d0b172209c Mon Sep 17 00:00:00 2001 From: Fahad Zubair Date: Tue, 25 Mar 2025 17:13:26 +0000 Subject: [PATCH] Bump aws-smithy-http-server version (#4059) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When updating `aws-smithy-http-server (v0.63.4)` to depend on `aws-smithy-json v0.61`, the minor version should have been bumped to `0.64.0` instead of just increasing the patch version. Current dependency tree: ``` aws-smithy-json v0.61.x └── aws-smithy-http-server v0.63.4 ``` This affects SDKs that have been generated by an older version of `smithy-rs`: ``` aws-smithy-json v0.60.7 └── service-sdk v0.1.0 aws-smithy-json v0.61.2 └── aws-smithy-http-server v0.63.4 ├── service-sdk v0.1.0 ``` This PR bumps `aws-smithy-http-server` to version `0.64.0`. It also reverts the dependency changes that were part of [this PR](https://github.com/smithy-lang/smithy-rs/pull/4014/files). Co-authored-by: Fahad Zubair --- rust-runtime/aws-smithy-http-server/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-runtime/aws-smithy-http-server/Cargo.toml b/rust-runtime/aws-smithy-http-server/Cargo.toml index d5dcad557..86daec4e7 100644 --- a/rust-runtime/aws-smithy-http-server/Cargo.toml +++ b/rust-runtime/aws-smithy-http-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aws-smithy-http-server" -version = "0.63.5" +version = "0.64.0" authors = ["Smithy Rust Server "] edition = "2021" license = "Apache-2.0" -- GitLab