From ef945604b930142c9dce81bb62365b4cd65c573a Mon Sep 17 00:00:00 2001 From: Art Shendrik Date: Sun, 31 Mar 2024 17:28:50 +0100 Subject: [PATCH] release: v0.7.0 Signed-off-by: Art Shendrik --- CHANGELOG.md | 6 ++++++ README.md | 6 +++--- gradle/libs.versions.toml | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d6f6f4c8..bc64472b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ [//]: # (Removed, Added, Changed, Fixed, Updated) + +## [0.7.0] - 2024-03-31 + ### Changed - return the plugin artifact shrinking with R8 (saved 32.719%, 265.9 KB). - update compatibility methods `NamedDomainObjectSet.named*` for Gradle 8.6+ and older. @@ -37,6 +40,7 @@ - bump `gradle-intellij-plugin` to _1.17.3_. - bump kctfork to _0.4.1_ (test dependency). + ## [0.7.0-alpha2] - 2024-02-22 ### Added @@ -190,6 +194,8 @@ _Stabilization release._ ## Notes +[0.7.0]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.7.0 +[0.7.0-alpha2]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.7.0-alpha2 [0.7.0-alpha1]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.7.0-alpha1 [0.6.0]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.6.0 [0.5.0]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.5.0 diff --git a/README.md b/README.md index 7982073b..c2423fce 100644 --- a/README.md +++ b/README.md @@ -32,8 +32,8 @@ Targeted for Gradle 8+ and Kotlin 1.9+. Built with:
```kotlin // in the `build.gradle.kts` of the target module plugins { - kotlin("multiplatform") version "1.9.22" - id("io.github.fluxo-kt.fluxo-kmp-conf") version "0.6.0" // <-- add here + kotlin("multiplatform") version "1.9.23" + id("io.github.fluxo-kt.fluxo-kmp-conf") version "0.7.0" // <-- add here } ``` @@ -45,7 +45,7 @@ plugins { ```kotlin // in the `build.gradle.kts` of the target module plugins { - kotlin("multiplatform") version "1.9.22" + kotlin("multiplatform") version "1.9.23" id("io.github.fluxo-kt.fluxo-kmp-conf") // <-- add here, no version needed for jitpack usage } ``` diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 07aa7928..c062c7b1 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -8,7 +8,7 @@ [versions] -version = "0.7.0-SNAPSHOT" +version = "0.7.0" # Java/Kotlin compatibility # WARNING: kotlinApiVersion can't be greater than kotlinLangVersion!