Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [0.7.0-alpha] - 10/14/2021

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

## New features

* http engine config [#336](https://github.com/awslabs/aws-sdk-kotlin/pull/336)
* add codegen wrappers for retries [#331](https://github.com/awslabs/aws-sdk-kotlin/pull/331)

## [0.6.0-alpha] - 10/07/2021

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

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

Expand Down
2 changes: 1 addition & 1 deletion examples/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {

allprojects {
group = "aws.sdk.kotlin.example"
version = "0.6.1-SNAPSHOT"
version = "0.7.0-alpha"

repositories {
mavenLocal()
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.6.1-SNAPSHOT
awsSdkKotlinVersion=0.7.0-alpha
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ sdkVersion=0.6.1-SNAPSHOT
smithyVersion=1.9.1
smithyGradleVersion=0.5.3
# smithy-kotlin codegen and runtime are versioned together
smithyKotlinVersion=0.5.1-SNAPSHOT
smithyKotlinVersion=0.5.1-alpha

# kotlin
kotlinVersion=1.5.30
Expand All @@ -28,7 +28,7 @@ atomicFuVersion=0.16.1
kotlinxSerializationVersion=1.3.0

# crt
crtKotlinVersion=0.4.2-SNAPSHOT
crtKotlinVersion=0.4.1-alpha

# testing/utility
junitVersion=5.6.2
Expand Down