Skip to content

Commit

Permalink
chore: v0.9.1-alpha release (#406)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianbotsf authored Nov 4, 2021
1 parent afccf41 commit e4948fa
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 7 deletions.
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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!**
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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)
2 changes: 1 addition & 1 deletion docs/GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion examples/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

# AWS SDK
awsSdkKotlinVersion=0.10.0-SNAPSHOT
awsSdkKotlinVersion=0.9.1-alpha
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit e4948fa

Please sign in to comment.