mirror of https://github.com/smithy-lang/smithy-rs
parent
cf2034f9cf
commit
35ac555e0f
|
@ -1,4 +1,11 @@
|
|||
<!-- Do not manually edit this file, use `update-changelogs` -->
|
||||
v0.33.1 (December 15th, 2021)
|
||||
=============================
|
||||
**New this release:**
|
||||
- 🐛 (smithy-rs#979) Make `aws-smithy-client` a required dependency in generated services.
|
||||
|
||||
|
||||
|
||||
v0.33.0 (December 15th, 2021)
|
||||
=============================
|
||||
**Breaking Changes:**
|
||||
|
@ -15,6 +22,7 @@ v0.33.0 (December 15th, 2021)
|
|||
This is to clearly distinguish it from `rustls` and `native_tls` which do not use a boxed connector.
|
||||
|
||||
**New this release:**
|
||||
- 🐛 (smithy-rs#957) Include non-service-specific examples in the generated root Cargo workspace
|
||||
- 🎉 (smithy-rs#922, smithy-rs#914) Add changelog automation to sdk-lints
|
||||
- 🐛 (aws-sdk-rust#317, smithy-rs#907) Removed spamming log message when a client was used without a sleep implementation, and
|
||||
improved context and call to action in logged messages around missing sleep implementations.
|
||||
|
|
|
@ -10,27 +10,3 @@
|
|||
# references = ["smithy-rs#920"]
|
||||
# meta = { "breaking" = false, "tada" = false, "bug" = false }
|
||||
# author = "rcoh"
|
||||
|
||||
[[aws-sdk-rust]]
|
||||
message = "Include non-service-specific examples in the root Cargo workspace so that they can build"
|
||||
references = ["smithy-rs#957"]
|
||||
meta = { "breaking" = false, "tada" = false, "bug" = true }
|
||||
author = "jdisanti"
|
||||
|
||||
[[smithy-rs]]
|
||||
message = "Include non-service-specific examples in the generated root Cargo workspace"
|
||||
references = ["smithy-rs#957"]
|
||||
meta = { "breaking" = false, "tada" = false, "bug" = true }
|
||||
author = "jdisanti"
|
||||
|
||||
[[smithy-rs]]
|
||||
message = "Make `aws-smithy-client` a required dependency in generated services."
|
||||
references = ["smithy-rs#979"]
|
||||
meta = { "breaking" = false, "tada" = false, "bug" = true }
|
||||
author = "rcoh"
|
||||
|
||||
[[aws-sdk-rust]]
|
||||
message = "Make `aws-smithy-client` a required dependency in generated services."
|
||||
references = ["smithy-rs#979"]
|
||||
meta = { "breaking" = false, "tada" = false, "bug" = true }
|
||||
author = "rcoh"
|
||||
|
|
|
@ -29,6 +29,8 @@ v0.3.0 (December 15th, 2021)
|
|||
- (smithy-rs#920) Fix typos in module documentation for generated crates
|
||||
- 🐛 (aws-sdk-rust#301, smithy-rs#892) Avoid serializing repetitive `xmlns` attributes when serializing XML. This reduces the length of serialized requests and should improve compatibility with localstack.
|
||||
- 🐛 (smithy-rs#953, aws-sdk-rust#331) Fixed a bug where certain characters caused a panic during URI encoding.
|
||||
- 🐛 (smithy-rs#957) Include non-service-specific examples in the root Cargo workspace so that they can build
|
||||
- 🐛 (smithy-rs#979) Make `aws-smithy-client` a required dependency in generated services.
|
||||
|
||||
**Contributors**
|
||||
Thank you for your contributions! ❤
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
aws.sdk.version=0.3.0
|
||||
|
||||
# Version number to use for the generated runtime crates
|
||||
smithy.rs.runtime.crate.version=0.33.0
|
||||
smithy.rs.runtime.crate.version=0.33.1
|
||||
|
||||
kotlin.code.style=official
|
||||
|
||||
|
|
Loading…
Reference in New Issue