File tree Expand file tree Collapse file tree 3 files changed +22
-5
lines changed
Expand file tree Collapse file tree 3 files changed +22
-5
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
3+ ## [ Unreleased] - TBD
4+
5+ ## [ 0.8.1-Beta] - Mar 23, 2024
6+
7+ ### Changed
8+
9+ - Update dependencies:
10+ - [ Kotlin ` 1.9.23 ` ] ( https://github.com/JetBrains/kotlin/releases/tag/v1.9.23 ) .
11+ - [ KotlinX Coroutines ` 1.8.1-Beta ` ] ( https://github.com/Kotlin/kotlinx.coroutines/releases/tag/1.8.1-Beta ) .
12+ - ` Gradle ` to ` 8.7 ` .
13+
14+ ### Added
15+
16+ - Add ` Flow.catchAndReturn ` , ` Flow.catchAndReturn ` operators.
17+ - Add ` Flow.mapToResult ` , ` Flow.mapResultCatching ` , ` Flow.throwFailure ` operators.
18+
319## [ 0.8.0] - Feb 24, 2024
420
521### Changed
246262
247263- Test for Publishing.
248264
249- [ Unreleased ] : https://github.com/hoc081098/FlowExt/compare/0.8.0...HEAD
265+ [ Unreleased ] : https://github.com/hoc081098/FlowExt/compare/0.8.1-Beta...HEAD
266+ [ 0.8.1-Beta ] : https://github.com/hoc081098/FlowExt/releases/tag/0.8.1-Beta
250267[ 0.8.0 ] : https://github.com/hoc081098/FlowExt/releases/tag/0.8.0
251268[ 0.7.5 ] : https://github.com/hoc081098/FlowExt/releases/tag/0.7.5
252269[ 0.7.4 ] : https://github.com/hoc081098/FlowExt/releases/tag/0.7.4
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ allprojects {
8383### Multiplatform
8484
8585``` groovy
86- implementation("io.github.hoc081098:FlowExt:0.8.0 ")
86+ implementation("io.github.hoc081098:FlowExt:0.8.1-Beta ")
8787```
8888
8989### Snapshot
@@ -102,7 +102,7 @@ allprojects {
102102}
103103
104104dependencies {
105- implementation(" io.github.hoc081098:FlowExt:0.8.1 -SNAPSHOT" )
105+ implementation(" io.github.hoc081098:FlowExt:0.8.2 -SNAPSHOT" )
106106}
107107```
108108
@@ -117,7 +117,7 @@ allprojects {
117117}
118118
119119dependencies {
120- implementation("io.github.hoc081098:FlowExt:0.8.1 -SNAPSHOT")
120+ implementation("io.github.hoc081098:FlowExt:0.8.2 -SNAPSHOT")
121121}
122122```
123123
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ kotlin.js.generate.executable.default=false
55
66GROUP =io.github.hoc081098
77# HEY! If you change the major version here be sure to update publish-release.yaml doc target folder!
8- VERSION_NAME =0.8.1-SNAPSHOT
8+ VERSION_NAME =0.8.1-Beta
99
1010POM_NAME =FlowExt
1111POM_DESCRIPTION =Kotlinx Coroutines Flow Extensions. Extensions to the Kotlin Flow library.
You can’t perform that action at this time.
0 commit comments