Skip to content

Commit f41b75c

Browse files
authored
chore: release 0.6.0-alpha (#332)
1 parent 4c86d31 commit f41b75c

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

CHANGELOG.md

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

3+
## [0.6.0-alpha] - 10/07/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+
9+
* implement basic retry support in runtime [#328](https://github.com/awslabs/aws-sdk-kotlin/pull/328)
10+
* event stream framing support [#320](https://github.com/awslabs/aws-sdk-kotlin/pull/320)
11+
* replace GSON based JSON serde with KMP compatible impl [#477](https://github.com/awslabs/smithy-kotlin/pull/477)
12+
13+
314
## [0.5.0-alpha] - 09/30/2021
415

516
**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 & 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.4.0-alpha"
25+
val awsKotlinSdkVersion = "0.6.0-alpha"
2626
// OR put it in gradle.properties
2727
// val awsKotlinSdkVersion: String by project
2828

examples/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44

55
allprojects {
66
group = "aws.sdk.kotlin.example"
7-
version = "0.5.1-SNAPSHOT"
7+
version = "0.6.0-alpha"
88

99
repositories {
1010
mavenLocal()

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.5.1-SNAPSHOT
3+
awsSdkKotlinVersion=0.6.0-alpha

gradle.properties

Lines changed: 2 additions & 2 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.5.1-SNAPSHOT
10+
sdkVersion=0.6.0-alpha
1111

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

1818
# kotlin
1919
kotlinVersion=1.5.30

0 commit comments

Comments
 (0)