Skip to content

Commit

Permalink
chore(publish): prepare for v0.8.1-Beta
Browse files Browse the repository at this point in the history
  • Loading branch information
hoc081098 committed Mar 23, 2024
1 parent 8165533 commit f3bb0fb
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 5 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Change Log

## [Unreleased] - TBD

## [0.8.1-Beta] - Mar 23, 2024

### Changed

- Update dependencies:
- [Kotlin `1.9.23`](https://github.com/JetBrains/kotlin/releases/tag/v1.9.23).
- [KotlinX Coroutines `1.8.1-Beta`](https://github.com/Kotlin/kotlinx.coroutines/releases/tag/1.8.1-Beta).
- `Gradle` to `8.7`.

### Added

- Add `Flow.catchAndReturn`, `Flow.catchAndReturn` operators.
- Add `Flow.mapToResult`, `Flow.mapResultCatching`, `Flow.throwFailure` operators.

## [0.8.0] - Feb 24, 2024

### Changed
Expand Down Expand Up @@ -246,7 +262,8 @@

- Test for Publishing.

[Unreleased]: https://github.com/hoc081098/FlowExt/compare/0.8.0...HEAD
[Unreleased]: https://github.com/hoc081098/FlowExt/compare/0.8.1-Beta...HEAD
[0.8.1-Beta]: https://github.com/hoc081098/FlowExt/releases/tag/0.8.1-Beta
[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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ allprojects {
### Multiplatform

```groovy
implementation("io.github.hoc081098:FlowExt:0.8.0")
implementation("io.github.hoc081098:FlowExt:0.8.1-Beta")
```

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

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

Expand All @@ -117,7 +117,7 @@ allprojects {
}
dependencies {
implementation("io.github.hoc081098:FlowExt:0.8.1-SNAPSHOT")
implementation("io.github.hoc081098:FlowExt:0.8.2-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.8.1-SNAPSHOT
VERSION_NAME=0.8.1-Beta

POM_NAME=FlowExt
POM_DESCRIPTION=Kotlinx Coroutines Flow Extensions. Extensions to the Kotlin Flow library.
Expand Down

0 comments on commit f3bb0fb

Please sign in to comment.