From e4948fa9bf87289915f5266a68134a0c7ae72b9f Mon Sep 17 00:00:00 2001 From: Ian Botsford <83236726+ianbotsf@users.noreply.github.com> Date: Thu, 4 Nov 2021 13:14:58 -0700 Subject: [PATCH] chore: v0.9.1-alpha release (#406) --- CHANGELOG.md | 16 ++++++++++++++-- docs/GettingStarted.md | 2 +- examples/gradle.properties | 2 +- gradle.properties | 6 +++--- 4 files changed, 19 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f8a5b4f0d51..66a72ad5cd8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.9.1-alpha] - 11/04/2021 + +**WARNING: Alpha releases may contain bugs and no guarantee is made about API stability. They are not recommended for production use!** + +### New features +* implement retries for imds [#404](https://github.com/awslabs/aws-sdk-kotlin/pull/404) +* enable machinelearning endpoint customization [#378](https://github.com/awslabs/aws-sdk-kotlin/pull/378) +* add glacier request body checksum [#379](https://github.com/awslabs/aws-sdk-kotlin/pull/379) + +### Fixes +* restJson1 empty httpPayload body serialization [#402](https://github.com/awslabs/aws-sdk-kotlin/pull/402) + ## [0.9.0-alpha] - 10/28/2021 **WARNING: Alpha releases may contain bugs and no guarantee is made about API stability. They are not recommended for production use!** @@ -420,7 +432,7 @@ * use sdkId if available for service client generation (https://github.com/awslabs/smithy-kotlin/issues/276) * explicitly set jvm target compatibility (https://github.com/awslabs/aws-sdk-kotlin/issues/103) * http error registration (https://github.com/awslabs/aws-sdk-kotlin/issues/118) - + ### Other * generate per/service base exception types (https://github.com/awslabs/smithy-kotlin/issues/270) @@ -453,6 +465,6 @@ NOTES: ### Features * Coroutine API -* DSL Builders +* DSL Builders * Default (environment or config) or static credential providers only. Additional providers will be added in later releases. * JVM only support (multiplatform support is on the roadmap) diff --git a/docs/GettingStarted.md b/docs/GettingStarted.md index 841cce3382c..591d75e47f8 100644 --- a/docs/GettingStarted.md +++ b/docs/GettingStarted.md @@ -22,7 +22,7 @@ Consult the [stability guide](stability.md) for more information on SDK stabilit ```kt # file: my-project/build.gradle.kts - val awsKotlinSdkVersion = "0.9.0-alpha" + val awsKotlinSdkVersion = "0.9.1-alpha" // OR put it in gradle.properties // val awsKotlinSdkVersion: String by project diff --git a/examples/gradle.properties b/examples/gradle.properties index 37abf96ffc2..700cc77e5a9 100644 --- a/examples/gradle.properties +++ b/examples/gradle.properties @@ -1,3 +1,3 @@ # AWS SDK -awsSdkKotlinVersion=0.10.0-SNAPSHOT +awsSdkKotlinVersion=0.9.1-alpha diff --git a/gradle.properties b/gradle.properties index 5dc3a656508..5a5e59fab39 100644 --- a/gradle.properties +++ b/gradle.properties @@ -7,13 +7,13 @@ kotlin.native.ignoreDisabledTargets=true org.gradle.jvmargs=-Xmx6g -XX:MaxPermSize=6g -XX:MaxMetaspaceSize=1G # sdk -sdkVersion=0.10.0-SNAPSHOT +sdkVersion=0.9.1-alpha # codegen smithyVersion=1.13.1 smithyGradleVersion=0.5.3 # smithy-kotlin codegen and runtime are versioned together -smithyKotlinVersion=0.7.1-SNAPSHOT +smithyKotlinVersion=0.7.1-alpha # kotlin kotlinVersion=1.5.31 @@ -28,7 +28,7 @@ atomicFuVersion=0.16.1 kotlinxSerializationVersion=1.3.0 # crt -crtKotlinVersion=0.5.1-SNAPSHOT +crtKotlinVersion=0.5.0-alpha # testing/utility junitVersion=5.6.2