Skip to content

Commit

Permalink
v1.0.0-beta07
Browse files Browse the repository at this point in the history
========================================
- fix issue with FormUrlEncoded
- based on Ktor 2.0.2
  • Loading branch information
JensKlingenbergEdeka committed Jun 8, 2022
1 parent 26ba012 commit d34e105
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 15 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<h1>Ktorfit</h1>

[![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)
<p align="center">
<img src ="https://raw.githubusercontent.com/Foso/Experimental/master/carbon.png" />
Expand Down Expand Up @@ -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")
Expand All @@ -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{
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand All @@ -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{
Expand Down
4 changes: 2 additions & 2 deletions example/AndroidOnlyExample/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions example/AndroidOnlyExample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
2 changes: 1 addition & 1 deletion example/MultiplatformExample/shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion ktorfit-ksp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ tasks.withType<KotlinCompile> {


group = "de.jensklingenberg.ktorfit"
version = "1.0.0-beta06"
version = "1.0.0-beta07"

dependencies {
implementation("com.google.devtools.ksp:symbol-processing-api:$kspVersion")
Expand Down
4 changes: 2 additions & 2 deletions ktorfit-lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
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(){
Expand Down
2 changes: 1 addition & 1 deletion local.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit d34e105

Please sign in to comment.