Skip to content

Commit

Permalink
chore: 0.9.3-alpha release (#435)
Browse files Browse the repository at this point in the history
  • Loading branch information
kggilmer authored Nov 19, 2021
1 parent 08fd684 commit 7e20d6e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.9.3-alpha] - 11/19/2021

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

### Fixes
* render default endpoint resolver for machinelearning [#424](https://github.com/awslabs/aws-sdk-kotlin/pull/424)

## [0.9.2-alpha] - 11/11/2021

**WARNING: Alpha releases may contain bugs and no guarantee is made about API stability. They are not recommended for production use!**
Expand Down
6 changes: 1 addition & 5 deletions docs/GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,11 @@ Consult the [stability guide](stability.md) for more information on SDK stabilit
```kt
# file: my-project/build.gradle.kts

val awsKotlinSdkVersion = "0.9.2-alpha"
// OR put it in gradle.properties
// val awsKotlinSdkVersion: String by project

dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0")

// The following line adds a dependency on the dynamodb client.
implementation("aws.sdk.kotlin:dynamodb:$awsKotlinSdkVersion")
implementation("aws.sdk.kotlin:dynamodb:0.+")
}
```

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.9.3-SNAPSHOT
awsSdkKotlinVersion=0.+
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ kotlin.native.ignoreDisabledTargets=true
org.gradle.jvmargs=-Xmx6g -XX:MaxPermSize=6g -XX:MaxMetaspaceSize=1G

# sdk
sdkVersion=0.9.3-SNAPSHOT
sdkVersion=0.9.3-alpha

# codegen
smithyVersion=1.13.1
smithyGradleVersion=0.5.3
# smithy-kotlin codegen and runtime are versioned together
smithyKotlinVersion=0.7.2-SNAPSHOT
smithyKotlinVersion=0.7.2-alpha

# kotlin
kotlinVersion=1.5.31
Expand Down

0 comments on commit 7e20d6e

Please sign in to comment.