From 06612cbaeedf09edb5aa249f56bf650db3c4dc7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petrus=20Nguy=E1=BB=85n=20Th=C3=A1i=20H=E1=BB=8Dc?= Date: Sun, 12 Nov 2023 17:22:56 +0700 Subject: [PATCH] chore(publish): prepare for 0.7.4 --- CHANGELOG.md | 9 ++++++--- README.md | 6 +++--- gradle.properties | 2 +- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d40d91d..4e2f65e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## [Unreleased] - TODO +## [0.7.4] - Nov 12, 2023 ### Changed @@ -13,7 +13,9 @@ ### Added -- Add `Flow.plus` operator, it is an alias to `concatWith` operator. +- Add `Flow.plus` operator, it is an alias to `concatWith` operator + (thanks to [@hoangchungk53qx1](https://github.com/hoangchungk53qx1)). + - Add `flowFromNonSuspend`, the non-suspend version of `flowFromSuspend`. ## [0.7.3] - Oct 29, 2023 @@ -219,7 +221,8 @@ - Test for Publishing. -[Unreleased]: https://github.com/hoc081098/FlowExt/compare/0.7.3...HEAD +[Unreleased]: https://github.com/hoc081098/FlowExt/compare/0.7.4...HEAD +[0.7.4]: https://github.com/hoc081098/FlowExt/releases/tag/0.7.4 [0.7.3]: https://github.com/hoc081098/FlowExt/releases/tag/0.7.3 [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 diff --git a/README.md b/README.md index 50c14b3b..796f4eae 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ allprojects { ### Multiplatform ```groovy -implementation("io.github.hoc081098:FlowExt:0.7.3") +implementation("io.github.hoc081098:FlowExt:0.7.4") ``` ### Snapshot @@ -95,7 +95,7 @@ allprojects { } dependencies { - implementation("io.github.hoc081098:FlowExt:0.7.4-SNAPSHOT") + implementation("io.github.hoc081098:FlowExt:0.7.5-SNAPSHOT") } ``` @@ -110,7 +110,7 @@ allprojects { } dependencies { - implementation("io.github.hoc081098:FlowExt:0.7.4-SNAPSHOT") + implementation("io.github.hoc081098:FlowExt:0.7.5-SNAPSHOT") } ``` diff --git a/gradle.properties b/gradle.properties index 3c7a180d..c1afe5a4 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.4-SNAPSHOT +VERSION_NAME=0.7.4 POM_NAME=FlowExt POM_DESCRIPTION=Kotlinx Coroutines Flow Extensions. Extensions to the Kotlin Flow library.