From cd26420f0801a92a41a4187bc6971028bc20e848 Mon Sep 17 00:00:00 2001 From: Art Shendrik Date: Sun, 2 Jun 2024 20:38:52 +0100 Subject: [PATCH] release: v0.10.1 Signed-off-by: Art Shendrik --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- gradle/libs.versions.toml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a965ffda..5986756a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ [//]: # (Removed, Added, Changed, Fixed, Updated) + +## [0.10.1] - 2024-06-02 + ### Added - allow disabling Android Lint when no Android plugin is used. - detect when the project is a child of a composite build and has no startup tasks. @@ -304,6 +307,7 @@ _Stabilization release._ ## Notes +[0.10.1]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.10.1 [0.10.0]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.10.0 [0.9.1]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.9.1 [0.8.1]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.8.1 diff --git a/README.md b/README.md index 57094f89..e5e149ad 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Targeted for Gradle 8+ and Kotlin 1.9+. Built with:
// in the `build.gradle.kts` of the target module plugins { kotlin("multiplatform") version "2.0.0" - id("io.github.fluxo-kt.fluxo-kmp-conf") version "0.10.0" // <-- add here + id("io.github.fluxo-kt.fluxo-kmp-conf") version "0.10.1" // <-- add here } ``` @@ -59,7 +59,7 @@ pluginManagement { } resolutionStrategy.eachPlugin { if (requested.id.toString() == "io.github.fluxo-kt.fluxo-kmp-conf") - useModule("com.github.fluxo-kt.fluxo-kmp-conf:fluxo-kmp-conf:08aaabdba9") // <-- specify version or commit + useModule("com.github.fluxo-kt.fluxo-kmp-conf:fluxo-kmp-conf:e2dae3bec5") // <-- specify version or commit } } ``` diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index edd42a4a..fe5f4a39 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -9,7 +9,7 @@ [versions] # WARNING: Remember to update the version in `README.md` examples! -version = "0.11.0-SNAPSHOT" +version = "0.10.1" # Java/Kotlin compatibility # WARNING: kotlinApiVersion can't be greater than kotlinLangVersion!