Skip to content

Commit

Permalink
Update example projects (#747)
Browse files Browse the repository at this point in the history
  • Loading branch information
Foso authored Dec 1, 2024
2 parents 908b460 + 78f8d7f commit 278765b
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions example/AndroidOnlyExample/app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -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"
}

Expand Down Expand Up @@ -52,7 +52,7 @@ tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach
}
}

val ktorfit = "2.1.0"
val ktorfit = "2.2.0"
val ktor = "3.0.1"
val compose_ui_version = "1.7.4"
dependencies {
Expand Down
2 changes: 1 addition & 1 deletion example/AndroidOnlyExample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
4 changes: 2 additions & 2 deletions example/MultiplatformExample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
}

Expand Down
2 changes: 1 addition & 1 deletion example/MultiplatformExample/shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
2 changes: 1 addition & 1 deletion ktorfit-annotations/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ tasks.withType<KotlinCompile> {
}

kotlin {
@OptIn(ExperimentalWasmDsl::class)
@OptIn(org.jetbrains.kotlin.gradle.ExperimentalWasmDsl::class)
wasmJs()
jvm {
}
Expand Down

0 comments on commit 278765b

Please sign in to comment.