From 2b90cc9b11064bc8e92cf874a49010dd16e51729 Mon Sep 17 00:00:00 2001 From: Russell Cohen Date: Mon, 10 Jan 2022 13:19:44 -0500 Subject: [PATCH] Cut release (#1055) --- CHANGELOG.md | 7 +++++++ CHANGELOG.next.toml | 17 ----------------- aws/SDK_CHANGELOG.md | 11 +++++++++++ gradle.properties | 4 ++-- 4 files changed, 20 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 00b7c139a..36c984fd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,11 @@ +v0.34.1 (January 10, 2022) +========================== +**New this release:** +- 🐛 (smithy-rs#1054, aws-sdk-rust#391) Fix critical paginator bug where an empty outputToken lead to a never ending stream. + + + 0.34.0 (January 6th, 2022) ========================== **Breaking Changes:** diff --git a/CHANGELOG.next.toml b/CHANGELOG.next.toml index c5b4f4888..72d79628e 100644 --- a/CHANGELOG.next.toml +++ b/CHANGELOG.next.toml @@ -10,20 +10,3 @@ # references = ["smithy-rs#920"] # meta = { "breaking" = false, "tada" = false, "bug" = false } # author = "rcoh" -[[aws-sdk-rust]] -message = "Fix typos for X-Ray trace ID environment variable in aws_http::recursion_detection" -references = ["smithy-rs#1050"] -meta = { "breaking" = false, "tada" = false, "bug" = true } -author = "nmoutschen" - -[[aws-sdk-rust]] -message = "Fix critical paginator bug where an empty outputToken lead to a never ending stream." -references = ["smithy-rs#1054", "aws-sdk-rust#391"] -meta = { "breaking" = false, "tada" = false, "bug" = true } -author = "rcoh" - -[[smithy-rs]] -message = "Fix critical paginator bug where an empty outputToken lead to a never ending stream." -references = ["smithy-rs#1054", "aws-sdk-rust#391"] -meta = { "breaking" = false, "tada" = false, "bug" = true } -author = "rcoh" diff --git a/aws/SDK_CHANGELOG.md b/aws/SDK_CHANGELOG.md index d412e7c70..754607d4c 100644 --- a/aws/SDK_CHANGELOG.md +++ b/aws/SDK_CHANGELOG.md @@ -1,4 +1,15 @@ +v0.4.1 (January 10, 2022) +========================= +**New this release:** +- 🐛 (smithy-rs#1050, @nmoutschen) Fix typos for X-Ray trace ID environment variable in aws_http::recursion_detection +- 🐛 (smithy-rs#1054, aws-sdk-rust#391) Fix critical paginator bug where an empty outputToken lead to a never ending stream. + +**Contributors** +Thank you for your contributions! ❤ +- @nmoutschen (smithy-rs#1050) + + 0.4.0 (January 6th, 2022) ========================= **Breaking Changes:** diff --git a/gradle.properties b/gradle.properties index 25d0b6e5a..4301dfe54 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,10 +5,10 @@ # Version number to use for the generated SDK # Note: these must always be full 3-segment semver versions -aws.sdk.version=0.4.0 +aws.sdk.version=0.4.1 # Version number to use for the generated runtime crates -smithy.rs.runtime.crate.version=0.34.0 +smithy.rs.runtime.crate.version=0.34.1 kotlin.code.style=official -- GitLab