Skip to content

Commit

Permalink
chore(publish): prepare for v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hoc081098 committed Feb 24, 2024
1 parent a918b09 commit 6f13249
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
9 changes: 5 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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

Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ allprojects {
### Multiplatform

```groovy
implementation("io.github.hoc081098:FlowExt:0.7.5")
implementation("io.github.hoc081098:FlowExt:0.8.0")
```

### Snapshot
Expand All @@ -96,7 +96,7 @@ allprojects {
}

dependencies {
implementation("io.github.hoc081098:FlowExt:0.7.6-SNAPSHOT")
implementation("io.github.hoc081098:FlowExt:0.8.1-SNAPSHOT")
}
```

Expand All @@ -111,7 +111,7 @@ allprojects {
}
dependencies {
implementation("io.github.hoc081098:FlowExt:0.7.5-SNAPSHOT")
implementation("io.github.hoc081098:FlowExt:0.8.1-SNAPSHOT")
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 6f13249

Please sign in to comment.