Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

misc: upgrade dependencies #1441

Merged
merged 5 commits into from
Oct 16, 2024
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
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
Loading