Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.10.1 #481

Merged
merged 1 commit into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,30 +32,30 @@ build.gradle.kts:

```kotlin
plugins {
id("de.jensklingenberg.ktorfit") version "1.10.0"
id("de.jensklingenberg.ktorfit") version "1.10.1"
}
```

build.gradle

```kotlin
plugins {
id("de.jensklingenberg.ktorfit") version "1.10.0"
id("de.jensklingenberg.ktorfit") version "1.10.1"
}
```

KSP:

```kotlin
de.jensklingenberg.ktorfit:ktorfit-ksp:1.10.0
de.jensklingenberg.ktorfit:ktorfit-ksp:1.10.1
```

Ktorfit-lib/-light:

```kotlin
implementation("de.jensklingenberg.ktorfit:ktorfit-lib:1.10.0")
implementation("de.jensklingenberg.ktorfit:ktorfit-lib:1.10.1")
or
implementation("de.jensklingenberg.ktorfit:ktorfit-lib-light:1.10.0")
implementation("de.jensklingenberg.ktorfit:ktorfit-lib-light:1.10.1")
```

## 👷 Project Structure
Expand Down
2 changes: 1 addition & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ But there is no intent to bump the Ktorfit major version for every KSP update.
========================================

### Fixed
- Using @FieldMap generates uncompiled code due to missing import #479
- Using @FieldMap generates uncompiled code due to missing import [#479](https://github.com/Foso/Ktorfit/issues/479)

1.10.0 - 2023-11-06
========================================
Expand Down
1 change: 1 addition & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ inspired by [Retrofit](https://square.github.io/retrofit/)

| Ktorfit-version | Kotlin | KSP | Ktor |
|--------------------------|:-------------------------:|:-----------------------:|:---------:|
| **_1.10.1_** | **1.9.20** | **1.0.14** | **2.3.4** |
| **_1.10.0_** | **1.9.20** | **1.0.14** | **2.3.4** |
| **_1.9.1_** | **1.9.10 / 1.9.20-RC** | **1.0.13** | **2.3.4** |
| **_1.8.1_** | **1.9.10 / 1.9.20-Beta2** | **1.0.13** | **2.3.4** |
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.20-1.0.14"
id("org.jetbrains.kotlin.plugin.serialization") version "1.9.10"
id("de.jensklingenberg.ktorfit") version "1.10.0"
id("de.jensklingenberg.ktorfit") version "1.10.1"
}


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

val ktorfit = "1.10.0"
val ktorfit = "1.10.1"
val ktor = "2.3.4"
val compose_ui_version = "1.5.1"
dependencies {
Expand Down
4 changes: 2 additions & 2 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.20-1.0.14"
id("kotlinx-serialization")
id("de.jensklingenberg.ktorfit") version "1.10.0"
id("de.jensklingenberg.ktorfit") version "1.10.1"
}

version = "1.0"
val ktorVersion = "2.3.4"
val ktorfitVersion = "1.10.0"
val ktorfitVersion = "1.10.1"

kotlin {
jvmToolchain(8)
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ kctfork = "0.3.2"
kotlin = "1.9.20"
kotlinPoet = "1.14.2"
kspVersion = "1.9.20-1.0.14"
ktorfit = "1.10.0"
ktorfit = "1.10.1"
ktorfitGradlePlugin = "1.8.1"
ktorVersion = "2.3.4"
mockk = "1.13.8"
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.10.0" // remember to bump this version before any release!
var version: String = "1.10.1" // remember to bump this version before any release!

/**
* used to get debug information from the compiler plugin
Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ extra:
site:
images: '../../images'
ktorfit:
release: "1.10.0"
release: "1.10.1"
ktor:
release: "2.3.4"
social:
Expand Down