From 7b5954ed8f58fca358ed39dd4b37e68a5becfa40 Mon Sep 17 00:00:00 2001 From: AWS SDK Rust Bot Date: Thu, 9 Jun 2022 22:53:53 +0000 Subject: [PATCH] Update changelogs --- CHANGELOG.md | 13 +++++++++++++ CHANGELOG.next.toml | 44 +------------------------------------------- aws/SDK_CHANGELOG.md | 12 ++++++++++++ 3 files changed, 26 insertions(+), 43 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 032f195b4..9738dfac2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,17 @@ +v0.43.0 (June 9th, 2022) +======================== +**New this release:** +- 🎉 ([smithy-rs#1381](https://github.com/awslabs/smithy-rs/issues/1381), @alonlud) Add ability to sign a request with all headers, or to change which headers are excluded from signing +- 🎉 ([smithy-rs#1390](https://github.com/awslabs/smithy-rs/issues/1390)) Add method `ByteStream::into_async_read`. This makes it easy to convert `ByteStream`s into a struct implementing `tokio:io::AsyncRead`. Available on **crate feature** `rt-tokio` only. +- ([smithy-rs#1404](https://github.com/awslabs/smithy-rs/issues/1404), @petrosagg) Add ability to specify a different rust crate name than the one derived from the package name +- ([smithy-rs#1404](https://github.com/awslabs/smithy-rs/issues/1404), @petrosagg) Switch to [RustCrypto](https://github.com/RustCrypto)'s implementation of MD5. + +**Contributors** +Thank you for your contributions! ❤ +- @alonlud ([smithy-rs#1381](https://github.com/awslabs/smithy-rs/issues/1381)) +- @petrosagg ([smithy-rs#1404](https://github.com/awslabs/smithy-rs/issues/1404)) + v0.42.0 (May 13th, 2022) ======================== **Breaking Changes:** diff --git a/CHANGELOG.next.toml b/CHANGELOG.next.toml index 419693846..1dffbf7f6 100644 --- a/CHANGELOG.next.toml +++ b/CHANGELOG.next.toml @@ -9,46 +9,4 @@ # message = "Fix typos in module documentation for generated crates" # references = ["smithy-rs#920"] # meta = { "breaking" = false, "tada" = false, "bug" = false } -# author = "rcoh" - -[[smithy-rs]] -message = "Add ability to sign a request with all headers, or to change which headers are excluded from signing" -references = ["smithy-rs#1381"] -meta = { "breaking" = false, "tada" = true, "bug" = false } -author = "alonlud" - - [[aws-sdk-rust]] - message = "Add method `ByteStream::into_async_read`. This makes it easy to convert `ByteStream`s into a struct implementing `tokio:io::AsyncRead`. Available on **crate feature** `rt-tokio` only." - references = ["smithy-rs#1390"] - meta = { "breaking" = false, "tada" = true, "bug" = false } - author = "Velfi" - - [[smithy-rs]] - message = "Add method `ByteStream::into_async_read`. This makes it easy to convert `ByteStream`s into a struct implementing `tokio:io::AsyncRead`. Available on **crate feature** `rt-tokio` only." - references = ["smithy-rs#1390"] - meta = { "breaking" = false, "tada" = true, "bug" = false } - author = "Velfi" - -[[smithy-rs]] -message = "Add ability to specify a different rust crate name than the one derived from the package name" -references = ["smithy-rs#1404"] -meta = { "breaking" = false, "tada" = false, "bug" = false } -author = "petrosagg" - -[[smithy-rs]] -message = "Switch to [RustCrypto](https://github.com/RustCrypto)'s implementation of MD5." -references = ["smithy-rs#1404"] -meta = { "breaking" = false, "tada" = false, "bug" = false } -author = "petrosagg" - -[[aws-sdk-rust]] -message = "Switch to [RustCrypto](https://github.com/RustCrypto)'s implementation of MD5." -references = ["smithy-rs#1404"] -meta = { "breaking" = false, "tada" = false, "bug" = false } -author = "petrosagg" - -[[aws-sdk-rust]] -message = "Add support for `credential_process` in AWS configs for fetching credentials from an external process." -references = ["smithy-rs#1356"] -meta = { "breaking" = false, "tada" = true, "bug" = false } -author = "jszwedko" +# author = "rcoh" \ No newline at end of file diff --git a/aws/SDK_CHANGELOG.md b/aws/SDK_CHANGELOG.md index 905b6a40f..41d82c5d3 100644 --- a/aws/SDK_CHANGELOG.md +++ b/aws/SDK_CHANGELOG.md @@ -1,4 +1,16 @@ +v0.13.0 (June 9th, 2022) +======================== +**New this release:** +- 🎉 ([smithy-rs#1390](https://github.com/awslabs/smithy-rs/issues/1390)) Add method `ByteStream::into_async_read`. This makes it easy to convert `ByteStream`s into a struct implementing `tokio:io::AsyncRead`. Available on **crate feature** `rt-tokio` only. +- 🎉 ([smithy-rs#1356](https://github.com/awslabs/smithy-rs/issues/1356), @jszwedko) Add support for `credential_process` in AWS configs for fetching credentials from an external process. +- ([smithy-rs#1404](https://github.com/awslabs/smithy-rs/issues/1404), @petrosagg) Switch to [RustCrypto](https://github.com/RustCrypto)'s implementation of MD5. + +**Contributors** +Thank you for your contributions! ❤ +- @jszwedko ([smithy-rs#1356](https://github.com/awslabs/smithy-rs/issues/1356)) +- @petrosagg ([smithy-rs#1404](https://github.com/awslabs/smithy-rs/issues/1404)) + v0.12.0 (May 13th, 2022) ======================== **New this release:** -- GitLab