Skip to content

Commit 7e20d6e

Browse files
authored
chore: 0.9.3-alpha release (#435)
1 parent 08fd684 commit 7e20d6e

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.9.3-alpha] - 11/19/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+
### Fixes
8+
* render default endpoint resolver for machinelearning [#424](https://github.com/awslabs/aws-sdk-kotlin/pull/424)
9+
310
## [0.9.2-alpha] - 11/11/2021
411

512
**WARNING: Alpha releases may contain bugs and no guarantee is made about API stability. They are not recommended for production use!**

docs/GettingStarted.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,11 @@ 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.2-alpha"
26-
// OR put it in gradle.properties
27-
// val awsKotlinSdkVersion: String by project
28-
2925
dependencies {
3026
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0")
3127

3228
// The following line adds a dependency on the dynamodb client.
33-
implementation("aws.sdk.kotlin:dynamodb:$awsKotlinSdkVersion")
29+
implementation("aws.sdk.kotlin:dynamodb:0.+")
3430
}
3531
```
3632

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.9.3-SNAPSHOT
3+
awsSdkKotlinVersion=0.+

gradle.properties

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

88
# sdk
9-
sdkVersion=0.9.3-SNAPSHOT
9+
sdkVersion=0.9.3-alpha
1010

1111
# codegen
1212
smithyVersion=1.13.1
1313
smithyGradleVersion=0.5.3
1414
# smithy-kotlin codegen and runtime are versioned together
15-
smithyKotlinVersion=0.7.2-SNAPSHOT
15+
smithyKotlinVersion=0.7.2-alpha
1616

1717
# kotlin
1818
kotlinVersion=1.5.31

0 commit comments

Comments
 (0)