diff --git a/CHANGELOG.md b/CHANGELOG.md index b8b65b0b..696dc731 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## [Unreleased] - TODO +## [0.7.2] - Oct 7, 2023 ### Changed @@ -16,7 +16,7 @@ ### Fixed - `Flow.select`: avoid calling sub-selectors when the previous state is the same as the current state - (aka `distinctUntilChanged`). + (aka. `distinctUntilChanged`). ## [0.7.0] ~ [0.7.1] - Jul 31, 2023 @@ -184,7 +184,8 @@ - Test for Publishing. -[Unreleased]: https://github.com/hoc081098/FlowExt/compare/0.7.1...HEAD +[Unreleased]: https://github.com/hoc081098/FlowExt/compare/0.7.2...HEAD +[0.7.2]: https://github.com/hoc081098/FlowExt/releases/tag/0.7.2 [0.7.1]: https://github.com/hoc081098/FlowExt/releases/tag/0.7.1 [0.7.0]: https://github.com/hoc081098/FlowExt/releases/tag/0.7.0 [0.6.1]: https://github.com/hoc081098/FlowExt/releases/tag/0.6.1 diff --git a/README.md b/README.md index 7169201d..63271bec 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ allprojects { ### Multiplatform ```groovy -implementation("io.github.hoc081098:FlowExt:0.7.1") +implementation("io.github.hoc081098:FlowExt:0.7.2") ``` ### Snapshot @@ -87,7 +87,7 @@ allprojects { } dependencies { - implementation("io.github.hoc081098:FlowExt:0.7.2-SNAPSHOT") + implementation("io.github.hoc081098:FlowExt:0.7.3-SNAPSHOT") } ``` @@ -102,7 +102,7 @@ allprojects { } dependencies { - implementation("io.github.hoc081098:FlowExt:0.7.2-SNAPSHOT") + implementation("io.github.hoc081098:FlowExt:0.7.3-SNAPSHOT") } ``` diff --git a/gradle.properties b/gradle.properties index e1336a6f..1c05de98 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,7 +5,7 @@ kotlin.js.generate.executable.default=false GROUP=io.github.hoc081098 # HEY! If you change the major version here be sure to update publish-release.yaml doc target folder! -VERSION_NAME=0.7.2-SNAPSHOT +VERSION_NAME=0.7.2 POM_NAME=FlowExt POM_DESCRIPTION=Kotlinx Coroutines Flow Extensions. Extensions to the Kotlin Flow library.