Skip to content

Commit

Permalink
release v1.4.4 (#383)
Browse files Browse the repository at this point in the history
  • Loading branch information
Foso authored Jul 27, 2023
1 parent dc87be6 commit ad38af3
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 13 deletions.
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ Please see the documentation at [https://foso.github.io/Ktorfit/](https://foso.g

## Compatibility

| Version | Kotlin | KSP | Ktor |
| Version | Kotlin | KSP | Ktor |
|--------------|:----------:|:----------:|:---------:|
| **_latest_** | **1.8.20** | **1.0.11** | **2.3.1** |
| **_latest_** | **1.8.20** | **1.0.11** | **2.3.2** |
| **_1.4.3_** | **1.8.20** | **1.0.11** | **2.3.1** |
| **_1.4.0_** | **1.8.20** | **1.0.11** | **2.3.0** |
| **_1.2.0_** | **1.8.20** | **1.0.10** | **2.3.0** |
| **_1.1.0_** | **1.8.20** | **1.0.10** | **2.2.4** |
Expand All @@ -38,7 +39,7 @@ plugins {
}

configure<de.jensklingenberg.ktorfit.gradle.KtorfitGradleConfiguration> {
version = "1.4.1"
version = "1.4.4"
}
```

Expand All @@ -49,21 +50,21 @@ plugins {
}

ktorfit{
version = "1.4.1"
version = "1.4.4"
}
```


KSP:
```kotlin
de.jensklingenberg.ktorfit:ktorfit-ksp:1.4.1
de.jensklingenberg.ktorfit:ktorfit-ksp:1.4.4
```

Ktorfit-lib/-light:
```kotlin
implementation("de.jensklingenberg.ktorfit:ktorfit-lib:1.4.1")
implementation("de.jensklingenberg.ktorfit:ktorfit-lib:1.4.4")
or
implementation("de.jensklingenberg.ktorfit:ktorfit-lib-light:1.4.1")
implementation("de.jensklingenberg.ktorfit:ktorfit-lib-light:1.4.4")
```


Expand Down
11 changes: 11 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Fixed
### Security

1.4.4 - 2023-07-26
========================================

### Added
### Changed
- Upgrade dependencies: Ktor 2.3.2

### Deprecated
### Removed
### Fixed
### Security

1.4.3 - 2023-07-13
========================================
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 @@ -6,7 +6,7 @@ plugins {
id("de.jensklingenberg.ktorfit") version "1.0.0"

}
val ktorfit = "1.4.3"
val ktorfit = "1.4.4"

configure<de.jensklingenberg.ktorfit.gradle.KtorfitGradleConfiguration> {
version = 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 @@ -9,7 +9,7 @@ plugins {

version = "1.0"
val ktorVersion = "2.3.1"
val ktorfitVersion = "1.4.3"
val ktorfitVersion = "1.4.4"

configure<de.jensklingenberg.ktorfit.gradle.KtorfitGradleConfiguration> {
version = ktorfitVersion
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ kctfork = "0.2.1"
kotlin = "1.8.22"
kotlinPoet = "1.14.2"
kspVersion = "1.8.22-1.0.11"
ktorfit = "1.4.3"
ktorfit-lib = "1.4.3"
ktorfit = "1.4.4"
ktorfit-lib = "1.4.4"
ktorVersion = "2.3.2"
dokkaVersion = "1.8.20"
gradleMavenPublishPlugin = "0.24.0"
Expand Down
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ extra:
site:
images: '../../images'
ktorfit:
release: "1.4.3"
release: "1.4.4"
ktor:
release: "2.3.1"
release: "2.3.2"
social:
- icon: fontawesome/brands/github-alt
link: 'https://github.com/foso'
Expand Down

0 comments on commit ad38af3

Please sign in to comment.