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 @@

Ktorfit

[![All Contribtors](https://img.shields.io/badge/Maven-Central-download.svg?style=flat-square)](https://mvnrepository.com/artifact/de.jensklingenberg.ktorfit) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/Foso/Ktorfit) -[![jCenter](https://img.shields.io/badge/Apache-2.0-green.svg)](https://github.com/Foso/Ktorfit/blob/master/LICENSE) v1.0.0-beta06 +[![jCenter](https://img.shields.io/badge/Apache-2.0-green.svg)](https://github.com/Foso/Ktorfit/blob/master/LICENSE) v1.0.0-beta07 [Documentation](http://foso.github.io/Ktorfit)

@@ -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 { group = "de.jensklingenberg.ktorfit" -version = "1.0.0-beta06" +version = "1.0.0-beta07" dependencies { implementation("com.google.devtools.ksp:symbol-processing-api:$kspVersion") diff --git a/ktorfit-lib/build.gradle.kts b/ktorfit-lib/build.gradle.kts index 5c4779ca4..f968d5bb9 100644 --- a/ktorfit-lib/build.gradle.kts +++ b/ktorfit-lib/build.gradle.kts @@ -14,8 +14,8 @@ tasks.withType { kotlinOptions.jvmTarget = "1.8" } -version = "1.0.0-beta06" -val ktorVersion = "2.0.1" +version = "1.0.0-beta07" +val ktorVersion = "2.0.2" kotlin { android(){ diff --git a/local.properties b/local.properties index ba63c14a9..3f618b944 100644 --- a/local.properties +++ b/local.properties @@ -5,4 +5,4 @@ # For customization when using a Version Control System, please read the # header note. #Thu May 26 21:30:01 CEST 2022 -sdk.dir=/home/jens/Code/Android/Sdk +sdk.dir=/Users/jensklingenberg/Library/Android/sdk