Skip to content

Commit

Permalink
misc: upgrade dependencies (#1441)
Browse files Browse the repository at this point in the history
  • Loading branch information
lauzadis authored Oct 16, 2024
1 parent e78fae7 commit facb26d
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 12 deletions.
5 changes: 5 additions & 0 deletions .changes/17dc21c3-0b7f-4796-ae05-ce7417589e63.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"id": "17dc21c3-0b7f-4796-ae05-ce7417589e63",
"type": "misc",
"description": "Upgrade to Kotlin 2.0.21"
}
2 changes: 1 addition & 1 deletion aws-runtime/aws-config/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ plugins {
description = "Support for AWS configuration"
extra["moduleName"] = "aws.sdk.kotlin.runtime.config"

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

kotlin {
sourceSets {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ package aws.sdk.kotlin.runtime.config.profile
import aws.sdk.kotlin.runtime.InternalSdkApi

@InternalSdkApi
@ExposedCopyVisibility // FIXME Change to @ConsistentCopyVisibility in 1.4.x minor version bump
public data class ConfigSection internal constructor(
public val name: String,
internal val properties: Map<String, AwsConfigValue>,
Expand Down
22 changes: 11 additions & 11 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
[versions]
kotlin-version = "2.0.10"
kotlin-version = "2.0.21"
dokka-version = "1.9.10"

aws-kotlin-repo-tools-version = "0.4.10"
aws-kotlin-repo-tools-version = "0.4.13"

# libs
coroutines-version = "1.9.0"
atomicfu-version = "0.24.0"
atomicfu-version = "0.25.0"

# smithy-kotlin codegen and runtime are versioned separately
smithy-kotlin-runtime-version = "1.3.16"
smithy-kotlin-codegen-version = "0.33.16"
smithy-kotlin-runtime-version = "1.3.17"
smithy-kotlin-codegen-version = "0.33.17"

# codegen
smithy-version = "1.51.0"

# testing
junit-version = "5.10.1"
kotest-version = "5.8.0"
kotlinx-benchmark-version = "0.4.9"
kotlinx-serialization-version = "1.6.2"
mockk-version = "1.13.7"
slf4j-version = "2.0.9"
junit-version = "5.10.5"
kotest-version = "5.9.1"
kotlinx-benchmark-version = "0.4.12"
kotlinx-serialization-version = "1.7.3"
mockk-version = "1.13.13"
slf4j-version = "2.0.16"

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

0 comments on commit facb26d

Please sign in to comment.