diff --git a/.github/workflows/pr-baseline.yml b/.github/workflows/pr-baseline.yml index 24c2f45..18159e6 100644 --- a/.github/workflows/pr-baseline.yml +++ b/.github/workflows/pr-baseline.yml @@ -60,7 +60,7 @@ jobs: uses: actions/setup-java@v4 with: distribution: temurin - java-version: 22 + java-version: 23 - name: Setup Gradle uses: gradle/actions/setup-gradle@v4 diff --git a/CHANGELOG.md b/CHANGELOG.md index 705f907..3d1ba4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ [//]: # (Removed, Added, Changed, Fixed, Updated) + +## [0.13.2] - 2024-11-26 + ### Fixed - fix publication config by handling SonatypeHost in the FluxoPublicationConfig dynamically. - don't try to setup browser target for Wasm WASI. @@ -407,6 +410,7 @@ _Stabilization release._ ## Notes +[0.13.2]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.13.2 [0.13.1]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.13.1 [0.13.0]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.13.0 [0.12.1]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.12.1 diff --git a/README.md b/README.md index 4ca87b0..f7504e6 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.21" - id("io.github.fluxo-kt.fluxo-kmp-conf") version "0.13.1" // <-- add here + id("io.github.fluxo-kt.fluxo-kmp-conf") version "0.13.2" // <-- 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:f805fa1704") // ← specify a version or commit + useModule("com.github.fluxo-kt.fluxo-kmp-conf:fluxo-kmp-conf:47d9c55ab6") // ← specify a version or commit } } ``` diff --git a/fluxo-kmp-conf/build.gradle.kts b/fluxo-kmp-conf/build.gradle.kts index 545a409..cde3d7e 100644 --- a/fluxo-kmp-conf/build.gradle.kts +++ b/fluxo-kmp-conf/build.gradle.kts @@ -64,7 +64,7 @@ fkcSetupGradlePlugin( publicationConfig { developerId = "amal" - developerName = "Artyom Shendrik" + developerName = "Art Shendrik" developerEmail = "artyom.shendrik@gmail.com" } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 7e541e4..3393fbc 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -10,7 +10,7 @@ [versions] # WARNING: Remember to update the version in `README.md` examples! -version = "0.13.2-SNAPSHOT" +version = "0.13.2" # Java/Kotlin compatibility # WARNING: kotlinApiVersion can't be greater than kotlinLangVersion!