diff --git a/CHANGELOG.md b/CHANGELOG.md index bd993dd..3aea310 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ [//]: # (Removed, Added, Changed, Fixed, Updated) + +## [0.13.1] - 2024-11-25 + ### Added - add JVM compatibility and Kotlin options flags to disable a corresponding autoconfiguration. @@ -392,6 +395,7 @@ _Stabilization release._ ## Notes +[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 [0.12.0]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.12.0 diff --git a/README.md b/README.md index 47ff5d9..b5d6b05 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.0" // <-- add here + id("io.github.fluxo-kt.fluxo-kmp-conf") version "0.13.1" // <-- add here } ``` diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 0ae6132..7203c15 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.1-SNAPSHOT" +version = "0.13.1" # Java/Kotlin compatibility # WARNING: kotlinApiVersion can't be greater than kotlinLangVersion!