Skip to content

Commit e4948fa

Browse files
authored
chore: v0.9.1-alpha release (#406)
1 parent afccf41 commit e4948fa

File tree

4 files changed

+19
-7
lines changed

4 files changed

+19
-7
lines changed

CHANGELOG.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [0.9.1-alpha] - 11/04/2021
4+
5+
**WARNING: Alpha releases may contain bugs and no guarantee is made about API stability. They are not recommended for production use!**
6+
7+
### New features
8+
* implement retries for imds [#404](https://github.com/awslabs/aws-sdk-kotlin/pull/404)
9+
* enable machinelearning endpoint customization [#378](https://github.com/awslabs/aws-sdk-kotlin/pull/378)
10+
* add glacier request body checksum [#379](https://github.com/awslabs/aws-sdk-kotlin/pull/379)
11+
12+
### Fixes
13+
* restJson1 empty httpPayload body serialization [#402](https://github.com/awslabs/aws-sdk-kotlin/pull/402)
14+
315
## [0.9.0-alpha] - 10/28/2021
416

517
**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 @@
420432
* use sdkId if available for service client generation (https://github.com/awslabs/smithy-kotlin/issues/276)
421433
* explicitly set jvm target compatibility (https://github.com/awslabs/aws-sdk-kotlin/issues/103)
422434
* http error registration (https://github.com/awslabs/aws-sdk-kotlin/issues/118)
423-
435+
424436
### Other
425437

426438
* generate per/service base exception types (https://github.com/awslabs/smithy-kotlin/issues/270)
@@ -453,6 +465,6 @@ NOTES:
453465

454466
### Features
455467
* Coroutine API
456-
* DSL Builders
468+
* DSL Builders
457469
* Default (environment or config) or static credential providers only. Additional providers will be added in later releases.
458470
* JVM only support (multiplatform support is on the roadmap)

docs/GettingStarted.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Consult the [stability guide](stability.md) for more information on SDK stabilit
2222
```kt
2323
# file: my-project/build.gradle.kts
2424

25-
val awsKotlinSdkVersion = "0.9.0-alpha"
25+
val awsKotlinSdkVersion = "0.9.1-alpha"
2626
// OR put it in gradle.properties
2727
// val awsKotlinSdkVersion: String by project
2828

examples/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11

22
# AWS SDK
3-
awsSdkKotlinVersion=0.10.0-SNAPSHOT
3+
awsSdkKotlinVersion=0.9.1-alpha

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ kotlin.native.ignoreDisabledTargets=true
77
org.gradle.jvmargs=-Xmx6g -XX:MaxPermSize=6g -XX:MaxMetaspaceSize=1G
88

99
# sdk
10-
sdkVersion=0.10.0-SNAPSHOT
10+
sdkVersion=0.9.1-alpha
1111

1212
# codegen
1313
smithyVersion=1.13.1
1414
smithyGradleVersion=0.5.3
1515
# smithy-kotlin codegen and runtime are versioned together
16-
smithyKotlinVersion=0.7.1-SNAPSHOT
16+
smithyKotlinVersion=0.7.1-alpha
1717

1818
# kotlin
1919
kotlinVersion=1.5.31
@@ -28,7 +28,7 @@ atomicFuVersion=0.16.1
2828
kotlinxSerializationVersion=1.3.0
2929

3030
# crt
31-
crtKotlinVersion=0.5.1-SNAPSHOT
31+
crtKotlinVersion=0.5.0-alpha
3232

3333
# testing/utility
3434
junitVersion=5.6.2

0 commit comments

Comments
 (0)