diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 3f28c15a6..35e6a2e40 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -9,7 +9,7 @@ But there is no intent to bump the Ktorfit major version for every KSP update. # [2.2.0]() * Supported Kotlin version: 2.0.0; 2.0.10; 2.0.20, 2.1.0-Beta1; 2.0.21-RC, 2.0.21, 2.1.0-RC, 2.1.0-RC2, 2.1.0 -* Supported KSP version: 1.0.27, 1.0.28 +* Supported KSP version: 1.0.27, 1.0.28, 1.0.29 * Ktor version: 3.0.1 ## Changed diff --git a/example/AndroidOnlyExample/app/build.gradle.kts b/example/AndroidOnlyExample/app/build.gradle.kts index 54ba93225..18ac05474 100644 --- a/example/AndroidOnlyExample/app/build.gradle.kts +++ b/example/AndroidOnlyExample/app/build.gradle.kts @@ -1,9 +1,9 @@ plugins { id("com.android.application") id("org.jetbrains.kotlin.android") - id("com.google.devtools.ksp") version "2.0.21-1.0.27" + id("com.google.devtools.ksp") version "2.1.0-1.0.29" id("org.jetbrains.kotlin.plugin.serialization") version "2.0.21" - id("de.jensklingenberg.ktorfit") version "2.1.0" + id("de.jensklingenberg.ktorfit") version "2.2.0" id("org.jetbrains.kotlin.plugin.compose") version "2.0.21" } @@ -52,7 +52,7 @@ tasks.withType().configureEach } } -val ktorfit = "2.1.0" +val ktorfit = "2.2.0" val ktor = "3.0.1" val compose_ui_version = "1.7.4" dependencies { diff --git a/example/AndroidOnlyExample/build.gradle b/example/AndroidOnlyExample/build.gradle index 49a75e2c3..859f0f7c1 100644 --- a/example/AndroidOnlyExample/build.gradle +++ b/example/AndroidOnlyExample/build.gradle @@ -2,5 +2,5 @@ plugins { id 'com.android.application' version '8.4.1' apply false id 'com.android.library' version '8.4.1' apply false - id 'org.jetbrains.kotlin.android' version '2.0.21' apply false + id 'org.jetbrains.kotlin.android' version '2.1.0' apply false } \ No newline at end of file diff --git a/example/MultiplatformExample/build.gradle.kts b/example/MultiplatformExample/build.gradle.kts index c89293ec2..664bcf6ca 100644 --- a/example/MultiplatformExample/build.gradle.kts +++ b/example/MultiplatformExample/build.gradle.kts @@ -9,9 +9,9 @@ buildscript { } } dependencies { - classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.21") + classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.0") classpath("com.android.tools.build:gradle:8.5.2") - classpath("org.jetbrains.kotlin:kotlin-serialization:2.0.21") + classpath("org.jetbrains.kotlin:kotlin-serialization:2.1.0") } } diff --git a/example/MultiplatformExample/shared/build.gradle.kts b/example/MultiplatformExample/shared/build.gradle.kts index 6066d8d51..8afae568f 100644 --- a/example/MultiplatformExample/shared/build.gradle.kts +++ b/example/MultiplatformExample/shared/build.gradle.kts @@ -4,7 +4,7 @@ plugins { kotlin("multiplatform") kotlin("native.cocoapods") id("com.android.library") - id("com.google.devtools.ksp") version "2.0.21-1.0.27" + id("com.google.devtools.ksp") version "2.1.0-1.0.29" id("kotlinx-serialization") id("de.jensklingenberg.ktorfit") version "2.2.0" } diff --git a/ktorfit-annotations/build.gradle.kts b/ktorfit-annotations/build.gradle.kts index 2dcfd9a09..7740ea0ba 100644 --- a/ktorfit-annotations/build.gradle.kts +++ b/ktorfit-annotations/build.gradle.kts @@ -29,7 +29,7 @@ tasks.withType { } kotlin { - @OptIn(ExperimentalWasmDsl::class) + @OptIn(org.jetbrains.kotlin.gradle.ExperimentalWasmDsl::class) wasmJs() jvm { }