diff --git a/CHANGELOG.md b/CHANGELOG.md index 4802edd18..179d28892 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,9 @@ -1.0.0-beta05 +1.0.0-beta07 +======================================== +- fix issue with FormUrlEncoded +- based on Ktor 2.0.2 + +1.0.0-beta06 ======================================== - fix issue with KSP 1.0.5 #19 diff --git a/README.md b/README.md index d29672f80..e206a2e4f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@
@@ -76,7 +76,7 @@ Next you have to add the Ktorfit KSP Plugin to the common target and every compi
```kotlin
-val ktorfitVersion = "1.0.0-beta06"
+val ktorfitVersion = "1.0.0-beta07"
dependencies {
add("kspCommonMainMetadata", "de.jensklingenberg.ktorfit:ktorfit-ksp:$ktorfitVersion")
@@ -93,7 +93,7 @@ Look here for more information https://kotlinlang.org/docs/ksp-multiplatform.htm
Add the Ktorfit-lib to your common module.
```kotlin
-val ktorfitVersion = "1.0.0-beta06"
+val ktorfitVersion = "1.0.0-beta07"
sourceSets {
val commonMain by getting{
diff --git a/docs/index.md b/docs/index.md
index 6e1a5209c..1261203c7 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -319,7 +319,7 @@ Next you have to add the Ktorfit KSP Plugin to the common target and every compi
```kotlin
-val ktorfitVersion = "1.0.0-beta06"
+val ktorfitVersion = "1.0.0-beta07"
dependencies {
add("kspCommonMainMetadata", "de.jensklingenberg.ktorfit:ktorfit-ksp:$ktorfitVersion")
@@ -336,7 +336,7 @@ Look here for more information https://kotlinlang.org/docs/ksp-multiplatform.htm
Add the Ktorfit-lib to your common module.
```kotlin
-val ktorfitVersion = "1.0.0-beta06"
+val ktorfitVersion = "1.0.0-beta07"
sourceSets {
val commonMain by getting{
diff --git a/example/AndroidOnlyExample/app/build.gradle b/example/AndroidOnlyExample/app/build.gradle
index 8abde017d..d4cc2f5e6 100644
--- a/example/AndroidOnlyExample/app/build.gradle
+++ b/example/AndroidOnlyExample/app/build.gradle
@@ -50,8 +50,8 @@ android {
}
dependencies {
- ksp('de.jensklingenberg.ktorfit:ktorfit-ksp:1.0.0-beta06')
- implementation("de.jensklingenberg.ktorfit:ktorfit-lib:1.0.0-beta06")
+ ksp('de.jensklingenberg.ktorfit:ktorfit-ksp:1.0.0-beta07')
+ implementation("de.jensklingenberg.ktorfit:ktorfit-lib:1.0.0-beta07")
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.4.1'
implementation 'androidx.activity:activity-compose:1.4.0'
diff --git a/example/AndroidOnlyExample/build.gradle b/example/AndroidOnlyExample/build.gradle
index 02dde259b..fb2e0a3ab 100644
--- a/example/AndroidOnlyExample/build.gradle
+++ b/example/AndroidOnlyExample/build.gradle
@@ -4,7 +4,7 @@ buildscript {
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
- id 'com.android.application' version '7.3.0-alpha07' apply false
- id 'com.android.library' version '7.3.0-alpha07' apply false
+ id 'com.android.application' version '7.2.0' apply false
+ id 'com.android.library' version '7.2.0' apply false
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
}
\ No newline at end of file
diff --git a/example/MultiplatformExample/shared/build.gradle.kts b/example/MultiplatformExample/shared/build.gradle.kts
index d4a89a9b3..68184493c 100644
--- a/example/MultiplatformExample/shared/build.gradle.kts
+++ b/example/MultiplatformExample/shared/build.gradle.kts
@@ -9,7 +9,7 @@ plugins {
version = "1.0"
val ktorVersion = "2.0.1"
-val ktorfitVersion = "1.0.0-beta06"
+val ktorfitVersion = "1.0.0-beta07"
kotlin {
android()
diff --git a/ktorfit-ksp/build.gradle.kts b/ktorfit-ksp/build.gradle.kts
index 2add2c95e..7d26b12f4 100644
--- a/ktorfit-ksp/build.gradle.kts
+++ b/ktorfit-ksp/build.gradle.kts
@@ -15,7 +15,7 @@ tasks.withType