File tree Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
- ## [ Unreleased ] - TBD
3
+ ## [ 0.8.0 ] - Feb 24, 2024
4
4
5
5
### Changed
6
6
7
- - Update dependencies
7
+ - Update dependencies:
8
8
- [ KotlinX Coroutines ` 1.8.0 ` ] ( https://github.com/Kotlin/kotlinx.coroutines/releases/tag/1.8.0 ) .
9
9
10
10
### Added
13
13
14
14
### Fixed
15
15
16
- - ` withLatestFrom ` : fix the bug that the other Flow is not cancelled after the main Flow is completed.
16
+ - ` withLatestFrom ` : fix a bug where the other ` Flow ` is not cancelled after the main ` Flow ` is completed.
17
17
18
18
## [ 0.7.5] - Jan 28, 2024
19
19
246
246
247
247
- Test for Publishing.
248
248
249
- [ Unreleased ] : https://github.com/hoc081098/FlowExt/compare/0.7.5...HEAD
249
+ [ Unreleased ] : https://github.com/hoc081098/FlowExt/compare/0.8.0...HEAD
250
+ [ 0.8.0 ] : https://github.com/hoc081098/FlowExt/releases/tag/0.8.0
250
251
[ 0.7.5 ] : https://github.com/hoc081098/FlowExt/releases/tag/0.7.5
251
252
[ 0.7.4 ] : https://github.com/hoc081098/FlowExt/releases/tag/0.7.4
252
253
[ 0.7.3 ] : https://github.com/hoc081098/FlowExt/releases/tag/0.7.3
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ allprojects {
77
77
### Multiplatform
78
78
79
79
``` groovy
80
- implementation("io.github.hoc081098:FlowExt:0.7.5 ")
80
+ implementation("io.github.hoc081098:FlowExt:0.8.0 ")
81
81
```
82
82
83
83
### Snapshot
@@ -96,7 +96,7 @@ allprojects {
96
96
}
97
97
98
98
dependencies {
99
- implementation(" io.github.hoc081098:FlowExt:0.7.6 -SNAPSHOT" )
99
+ implementation(" io.github.hoc081098:FlowExt:0.8.1 -SNAPSHOT" )
100
100
}
101
101
```
102
102
@@ -111,7 +111,7 @@ allprojects {
111
111
}
112
112
113
113
dependencies {
114
- implementation("io.github.hoc081098:FlowExt:0.7.5 -SNAPSHOT")
114
+ implementation("io.github.hoc081098:FlowExt:0.8.1 -SNAPSHOT")
115
115
}
116
116
```
117
117
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ kotlin.js.generate.executable.default=false
5
5
6
6
GROUP =io.github.hoc081098
7
7
# HEY! If you change the major version here be sure to update publish-release.yaml doc target folder!
8
- VERSION_NAME =0.7.6-SNAPSHOT
8
+ VERSION_NAME =0.8.0
9
9
10
10
POM_NAME =FlowExt
11
11
POM_DESCRIPTION =Kotlinx Coroutines Flow Extensions. Extensions to the Kotlin Flow library.
You can’t perform that action at this time.
0 commit comments