Skip to content

Commit

Permalink
Release 1.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Foso committed Apr 15, 2024
1 parent cb545fd commit 10ec617
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ and this project orients towards [Semantic Versioning](http://semver.org/spec/v2
Note: This project needs KSP to work and every new Ktorfit with an update of the KSP version is technically a breaking change.
But there is no intent to bump the Ktorfit major version for every KSP update.

1.14.0 - 2024-04-14
1.14.0 - 2024-04-15
========================================
- Build with KSP 1.0.20, Kotlin 2.0.0-RC1, Ktor 2.3.10

Expand Down
4 changes: 2 additions & 2 deletions example/AndroidOnlyExample/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id("org.jetbrains.kotlin.android")
id("com.google.devtools.ksp") version "1.9.23-1.0.20"
id("org.jetbrains.kotlin.plugin.serialization") version "1.9.23"
id("de.jensklingenberg.ktorfit") version "1.13.0"
id("de.jensklingenberg.ktorfit") version "1.14.0"
}


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

val ktorfit = "1.13.0"
val ktorfit = "1.14.0"
val ktor = "2.3.10"
val compose_ui_version = "1.5.1"
dependencies {
Expand Down
6 changes: 3 additions & 3 deletions example/MultiplatformExample/shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ plugins {
id("com.android.library")
id("com.google.devtools.ksp") version "1.9.23-1.0.20"
id("kotlinx-serialization")
id("de.jensklingenberg.ktorfit") version "1.13.0"
id("de.jensklingenberg.ktorfit") version "1.14.0"
}

version = "1.0"
val ktorVersion = "2.3.10"
val ktorfitVersion = "1.13.0"
val ktorfitVersion = "1.14.0"

kotlin {
jvmToolchain(8)
Expand Down Expand Up @@ -40,7 +40,7 @@ kotlin {
dependencies {
implementation("de.jensklingenberg.ktorfit:ktorfit-lib:$ktorfitVersion")
//implementation("de.jensklingenberg.ktorfit:ktorfit-lib-light:$ktorfitVersion")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0")

//Only needed when you want to use Kotlin Serialization
implementation("io.ktor:ktor-client-serialization:$ktorVersion")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ open class KtorfitGradleConfiguration {
* version number of the compiler plugin
*/
@Deprecated("Update the Gradle plugin instead of updating this version")
var version: String = "1.12.0" // remember to bump this version before any release!
var version: String = "1.14.0" // remember to bump this version before any release!

/**
* used to get debug information from the compiler plugin
Expand Down

0 comments on commit 10ec617

Please sign in to comment.