Skip to content

Commit 90357e0

Browse files
authored
chore: release 0.8.0-alpha (#366)
1 parent 6cf922f commit 90357e0

File tree

5 files changed

+32
-6
lines changed

5 files changed

+32
-6
lines changed

CHANGELOG.md

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

3+
## [0.8.0-alpha] - 10/21/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+
### Breaking changes
8+
* require a resolved configuration [#351](https://github.com/awslabs/aws-sdk-kotlin/pull/351)
9+
10+
### New features
11+
* detect region from active AWS profile [#344](https://github.com/awslabs/aws-sdk-kotlin/pull/344)
12+
* ec2 imds region provider [#341](https://github.com/awslabs/aws-sdk-kotlin/pull/341)
13+
* Add STS assume role and web identity credential providers [#352](https://github.com/awslabs/aws-sdk-kotlin/pull/352)
14+
* ECS credential provider [#353](https://github.com/awslabs/aws-sdk-kotlin/pull/353)
15+
* ec2 credentials provider [#348](https://github.com/awslabs/aws-sdk-kotlin/pull/348)
16+
17+
### Fixes
18+
* use wrapped response when deserializing modeled exceptions [#358](https://github.com/awslabs/aws-sdk-kotlin/pull/358)
19+
* switch from ULong to Long in public presigner API for better java interop [#359](https://github.com/awslabs/aws-sdk-kotlin/pull/359)
20+
21+
### Misc
22+
* Bump Kotlin and Dokka versions to latest release [#360](https://github.com/awslabs/aws-sdk-kotlin/pull/360)
23+
* update aws models [#347](https://github.com/awslabs/aws-sdk-kotlin/pull/347)
24+
* add docs for enabling logging in unit tests [#339](https://github.com/awslabs/aws-sdk-kotlin/pull/339)
25+
26+
327
## [0.7.0-alpha] - 10/14/2021
428

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

examples/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ plugins {
22
kotlin("jvm") version "1.5.31"
33
}
44

5+
val awsSdkKotlinVersion: String by project
6+
57
allprojects {
68
group = "aws.sdk.kotlin.example"
7-
version = "0.7.1-SNAPSHOT"
9+
version = awsSdkKotlinVersion
810

911
repositories {
1012
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.7.1-SNAPSHOT
3+
awsSdkKotlinVersion=0.8.0-alpha

gradle.properties

Lines changed: 3 additions & 3 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.7.1-SNAPSHOT
10+
sdkVersion=0.8.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.5.2-SNAPSHOT
16+
smithyKotlinVersion=0.6.0-alpha
1717

1818
# kotlin
1919
kotlinVersion=1.5.31
@@ -28,7 +28,7 @@ atomicFuVersion=0.16.1
2828
kotlinxSerializationVersion=1.3.0
2929

3030
# crt
31-
crtKotlinVersion=0.4.2-SNAPSHOT
31+
crtKotlinVersion=0.5.0-alpha
3232

3333
# testing/utility
3434
junitVersion=5.6.2

0 commit comments

Comments
 (0)