Skip to content

Commit

Permalink
(deps) update Ktor to 2.2.3 (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
Foso authored Feb 12, 2023
1 parent f32a12c commit 6e7c90d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
10 changes: 9 additions & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,17 @@ NEW:
* You can now disable the check if the baseUrl ends with a /

```kotlin
Ktorfit.Builder().baseUrl(testBaseUrl, checkUrl= false).build()
Ktorfit.Builder().baseUrl(testBaseUrl, checkUrl = false).build()
```

🐛 Bugs fixed

* Fixed Ktorfit breaking incremental compilation #110

⬆️ Deps updates

- based on Ktor 2.2.3

1.0.0-beta17 (21-01-2023)
========================================
💥 Breaking changes:
Expand Down
2 changes: 1 addition & 1 deletion example/AndroidOnlyExample/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ android {
}
}
val ktorfit = "1.0.0-beta17"
val ktor = "2.2.2"
val ktor = "2.2.3"
val compose_ui_version = "1.3.3"
dependencies {
ksp("de.jensklingenberg.ktorfit:ktorfit-ksp:$ktorfit")
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 @@ -8,7 +8,7 @@ plugins {
}

version = "1.0"
val ktorVersion = "2.2.2"
val ktorVersion = "2.2.3"
val ktorfitVersion = "1.0.0-beta17"

kotlin {
Expand Down
4 changes: 2 additions & 2 deletions sandbox/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}
apply(plugin = "de.jensklingenberg.ktorfit")
version = "1.0-SNAPSHOT"
val ktorVersion = "2.2.2"
val ktorVersion = "2.2.3"
configure<de.jensklingenberg.ktorfit.gradle.KtorfitGradleConfiguration> {
enabled = true
}
Expand Down Expand Up @@ -59,7 +59,7 @@ kotlin {
dependencies {
implementation("io.ktor:ktor-client-core-native:1.3.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
implementation("io.ktor:ktor-client-curl:2.2.2")
implementation("io.ktor:ktor-client-curl:2.2.3")

}
}
Expand Down

0 comments on commit 6e7c90d

Please sign in to comment.