Skip to content

Commit

Permalink
release v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Foso committed Mar 20, 2023
1 parent 507aa19 commit da832eb
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 8 deletions.
2 changes: 1 addition & 1 deletion compiler-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile


val enableSigning = project.hasProperty("ORG_GRADLE_PROJECT_signingInMemoryKey")
val enableSigning = true

plugins {
kotlin("jvm")
Expand Down
18 changes: 18 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,24 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Bumped

1.0.1 - 2023-03-20
========================================

### Added

### Changed

### Deprecated

### Removed

### Fixed
[Bug]: Post request body serialization doesn't work #202

### Security

### Bumped

---

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

}
val ktorfit = "1.0.0"
val ktorfit = "1.0.1"

configure<de.jensklingenberg.ktorfit.gradle.KtorfitGradleConfiguration> {
version = ktorfit
Expand Down Expand Up @@ -59,7 +59,7 @@ dependencies {
ksp("de.jensklingenberg.ktorfit:ktorfit-ksp:$ktorfit")
implementation("de.jensklingenberg.ktorfit:ktorfit-lib:$ktorfit")
implementation ("androidx.core:core-ktx:1.9.0")
implementation ("androidx.lifecycle:lifecycle-runtime-ktx:2.5.1")
implementation ("androidx.lifecycle:lifecycle-runtime-ktx:2.6.0")
implementation ("androidx.activity:activity-compose:1.6.1")
implementation ("androidx.compose.ui:ui:$compose_ui_version")
implementation ("androidx.compose.ui:ui-tooling-preview:$compose_ui_version")
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.2.4"
val ktorfitVersion = "1.0.0"
val ktorfitVersion = "1.0.1"

configure<de.jensklingenberg.ktorfit.gradle.KtorfitGradleConfiguration> {
version = ktorfitVersion
Expand Down
2 changes: 1 addition & 1 deletion ktorfit-annotations/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ android {
}
}

val enableSigning = project.hasProperty("ORG_GRADLE_PROJECT_signingInMemoryKey")
val enableSigning = true

mavenPublishing {
publishToMavenCentral()
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 @@ -26,7 +26,7 @@ tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}

val enableSigning = project.hasProperty("ORG_GRADLE_PROJECT_signingInMemoryKey")
val enableSigning = true
mavenPublishing {
publishToMavenCentral()
// publishToMavenCentral(SonatypeHost.S01) for publishing through s01.oss.sonatype.org
Expand Down
2 changes: 1 addition & 1 deletion ktorfit-lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ detekt {
config = files("../detekt-config.yml")
buildUponDefaultConfig = false
}
val enableSigning = project.hasProperty("ORG_GRADLE_PROJECT_signingInMemoryKey")
val enableSigning = true

mavenPublishing {
publishToMavenCentral()
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.0.0"
release: "1.0.1"
ktor:
release: "2.2.4"
social:
Expand Down

0 comments on commit da832eb

Please sign in to comment.