From 6f13249e3791c1f19e181decdfed17c9e91b5e91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petrus=20Nguy=E1=BB=85n=20Th=C3=A1i=20H=E1=BB=8Dc?= Date: Sat, 24 Feb 2024 16:02:13 +0700 Subject: [PATCH] chore(publish): prepare for v0.8.0 --- CHANGELOG.md | 9 +++++---- README.md | 6 +++--- gradle.properties | 2 +- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b0e3d07..f5192446 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,10 @@ # Change Log -## [Unreleased] - TBD +## [0.8.0] - Feb 24, 2024 ### Changed -- Update dependencies +- Update dependencies: - [KotlinX Coroutines `1.8.0`](https://github.com/Kotlin/kotlinx.coroutines/releases/tag/1.8.0). ### Added @@ -13,7 +13,7 @@ ### Fixed -- `withLatestFrom`: fix the bug that the other Flow is not cancelled after the main Flow is completed. +- `withLatestFrom`: fix a bug where the other `Flow` is not cancelled after the main `Flow` is completed. ## [0.7.5] - Jan 28, 2024 @@ -246,7 +246,8 @@ - Test for Publishing. -[Unreleased]: https://github.com/hoc081098/FlowExt/compare/0.7.5...HEAD +[Unreleased]: https://github.com/hoc081098/FlowExt/compare/0.8.0...HEAD +[0.8.0]: https://github.com/hoc081098/FlowExt/releases/tag/0.8.0 [0.7.5]: https://github.com/hoc081098/FlowExt/releases/tag/0.7.5 [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 diff --git a/README.md b/README.md index b35c7602..b6d8f151 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ allprojects { ### Multiplatform ```groovy -implementation("io.github.hoc081098:FlowExt:0.7.5") +implementation("io.github.hoc081098:FlowExt:0.8.0") ``` ### Snapshot @@ -96,7 +96,7 @@ allprojects { } dependencies { - implementation("io.github.hoc081098:FlowExt:0.7.6-SNAPSHOT") + implementation("io.github.hoc081098:FlowExt:0.8.1-SNAPSHOT") } ``` @@ -111,7 +111,7 @@ allprojects { } dependencies { - implementation("io.github.hoc081098:FlowExt:0.7.5-SNAPSHOT") + implementation("io.github.hoc081098:FlowExt:0.8.1-SNAPSHOT") } ``` diff --git a/gradle.properties b/gradle.properties index 6de74874..80e41b5d 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.6-SNAPSHOT +VERSION_NAME=0.8.0 POM_NAME=FlowExt POM_DESCRIPTION=Kotlinx Coroutines Flow Extensions. Extensions to the Kotlin Flow library.