Skip to content

Commit facb26d

Browse files
authored
misc: upgrade dependencies (#1441)
1 parent e78fae7 commit facb26d

File tree

4 files changed

+18
-12
lines changed

4 files changed

+18
-12
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"id": "17dc21c3-0b7f-4796-ae05-ce7417589e63",
3+
"type": "misc",
4+
"description": "Upgrade to Kotlin 2.0.21"
5+
}

aws-runtime/aws-config/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ plugins {
1414
description = "Support for AWS configuration"
1515
extra["moduleName"] = "aws.sdk.kotlin.runtime.config"
1616

17-
apply(plugin = "kotlinx-atomicfu")
17+
apply(plugin = "org.jetbrains.kotlinx.atomicfu")
1818

1919
kotlin {
2020
sourceSets {

aws-runtime/aws-config/common/src/aws/sdk/kotlin/runtime/config/profile/ConfigSection.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ package aws.sdk.kotlin.runtime.config.profile
88
import aws.sdk.kotlin.runtime.InternalSdkApi
99

1010
@InternalSdkApi
11+
@ExposedCopyVisibility // FIXME Change to @ConsistentCopyVisibility in 1.4.x minor version bump
1112
public data class ConfigSection internal constructor(
1213
public val name: String,
1314
internal val properties: Map<String, AwsConfigValue>,

gradle/libs.versions.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
[versions]
2-
kotlin-version = "2.0.10"
2+
kotlin-version = "2.0.21"
33
dokka-version = "1.9.10"
44

5-
aws-kotlin-repo-tools-version = "0.4.10"
5+
aws-kotlin-repo-tools-version = "0.4.13"
66

77
# libs
88
coroutines-version = "1.9.0"
9-
atomicfu-version = "0.24.0"
9+
atomicfu-version = "0.25.0"
1010

1111
# smithy-kotlin codegen and runtime are versioned separately
12-
smithy-kotlin-runtime-version = "1.3.16"
13-
smithy-kotlin-codegen-version = "0.33.16"
12+
smithy-kotlin-runtime-version = "1.3.17"
13+
smithy-kotlin-codegen-version = "0.33.17"
1414

1515
# codegen
1616
smithy-version = "1.51.0"
1717

1818
# testing
19-
junit-version = "5.10.1"
20-
kotest-version = "5.8.0"
21-
kotlinx-benchmark-version = "0.4.9"
22-
kotlinx-serialization-version = "1.6.2"
23-
mockk-version = "1.13.7"
24-
slf4j-version = "2.0.9"
19+
junit-version = "5.10.5"
20+
kotest-version = "5.9.1"
21+
kotlinx-benchmark-version = "0.4.12"
22+
kotlinx-serialization-version = "1.7.3"
23+
mockk-version = "1.13.13"
24+
slf4j-version = "2.0.16"
2525

2626
[libraries]
2727
aws-kotlin-repo-tools-build-support = { module="aws.sdk.kotlin.gradle:build-support", version.ref = "aws-kotlin-repo-tools-version" }

0 commit comments

Comments
 (0)