diff --git a/CHANGELOG.md b/CHANGELOG.md index 032f195b4560cabad8a1af64328cc8c3d3542985..9738dfac20e67153105ea73ccb79b4e71cab58aa 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 419693846247b1d3b8b258974009379d76d2eb56..1dffbf7f63628974db1d5f12b492eae7d6d0b278 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 905b6a40f1c155f6feee4b5c07ee1eee23394e7e..41d82c5d31dc1a447f1a9ae1039226d410245d3d 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:**