Skip to content

Commit ddd68e1

Browse files
authored
misc: update documentation and bump version (#1137)
1 parent b6f1880 commit ddd68e1

File tree

5 files changed

+10
-12
lines changed

5 files changed

+10
-12
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88
[maven-badge]: https://img.shields.io/maven-central/v/aws.sdk.kotlin/s3.svg?label=Maven
99
[maven-url]: https://search.maven.org/search?q=g:aws.sdk.kotlin
1010

11-
This repo contains the AWS SDK for Kotlin and its [public roadmap](https://github.com/awslabs/aws-sdk-kotlin/projects/2)
12-
13-
**The AWS SDK for Kotlin is currently in developer preview and is intended strictly for feedback purposes only. Do not use this SDK for production workloads. Refer to the SDK [stability](VERSIONING.md#stability-of-the-aws-sdk-for-kotlin) guidelines**
11+
This repo contains the AWS SDK for Kotlin and its [public roadmap](https://github.com/awslabs/aws-sdk-kotlin/projects/2).
1412

1513
## Getting Started
1614

@@ -19,7 +17,7 @@ This repo contains the AWS SDK for Kotlin and its [public roadmap](https://githu
1917
* [API Reference](https://sdk.amazonaws.com/kotlin/api/latest/index.html)
2018
* [Samples](https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/kotlin)
2119

22-
See the [Getting Started Guide](docs/GettingStarted.md) to learn how to use AWS SDKs in your program.
20+
See the [Getting Started Guide](docs/GettingStarted.md) to learn how to use the AWS SDK for Kotlin in your program.
2321

2422
## Feedback
2523

docs/GettingStarted.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Beta Release Quickstart
1+
# Getting Started
22

3-
Beta releases of the AWS SDK for Kotlin are published to Maven Central with the `-beta` qualifier.
4-
**NOTE: Beta releases are not meant for production workloads**.
3+
Releases of the AWS SDK for Kotlin are published to Maven Central .
4+
**NOTE: Beta releases ending with the `-beta` qualifier are not meant for production workloads**.
55
Consult the [stability guide](../VERSIONING.md#stability-of-the-aws-sdk-for-kotlin) for more information on SDK stability and maintenance.
66

77
1. Add the repository to your Gradle or Maven configuration
@@ -26,7 +26,7 @@ Consult the [stability guide](../VERSIONING.md#stability-of-the-aws-sdk-for-kotl
2626
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.3")
2727

2828
// The following line adds a dependency on the dynamodb client.
29-
implementation("aws.sdk.kotlin:dynamodb:0.+")
29+
implementation("aws.sdk.kotlin:dynamodb:1.+")
3030
}
3131
```
3232

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.+
3+
awsSdkKotlinVersion=1.+

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ kotlin.native.ignoreDisabledTargets=true
66
org.gradle.jvmargs=-Xmx6g -XX:MaxMetaspaceSize=2G
77

88
# sdk
9-
sdkVersion=0.37.0-SNAPSHOT
9+
sdkVersion=1.0.0-SNAPSHOT
1010

1111
# kotlin
1212
kotlinVersion=1.9.20

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ coroutines-version = "1.7.3"
77
atomicfu-version = "0.22.0"
88

99
# smithy-kotlin codegen and runtime are versioned separately
10-
smithy-kotlin-runtime-version = "0.30.0"
11-
smithy-kotlin-codegen-version = "0.30.0"
10+
smithy-kotlin-runtime-version = "1.0.0"
11+
smithy-kotlin-codegen-version = "0.30.1"
1212

1313
# codegen
1414
smithy-version = "1.41.1"

0 commit comments

Comments
 (0)