Skip to content

Commit

Permalink
Prepare version 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Sep 14, 2022
1 parent b273fd7 commit ae9549e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
## [Unreleased]


## [0.10.0]
### Changed
- Remove `ReceiveTurbine.ignoreRemainingEvents` from public API.

### Fixed
- Restore usage of `Unconfined` dispatcher preventing value conflation (as much as possible) so that intermediate values can always be observed.


## [0.9.0]
- `FlowTurbine` is now called `ReceiveTurbine`. This is the consume-only type with which you assert on events it has seen (historically only from a `Flow`).
- New public `Turbine` type implements `ReceiveTurbine` but also allows you write events from a data source. Use this to implement fakes or collect events from non-`Flow` streams.
Expand Down Expand Up @@ -88,7 +96,8 @@
Initial release


[Unreleased]: https://github.com/cashapp/turbine/compare/0.9.0...HEAD
[Unreleased]: https://github.com/cashapp/turbine/compare/0.10.0...HEAD
[0.10.0]: https://github.com/cashapp/turbine/releases/tag/0.10.0
[0.9.0]: https://github.com/cashapp/turbine/releases/tag/0.9.0
[0.8.0]: https://github.com/cashapp/turbine/releases/tag/0.8.0
[0.7.0]: https://github.com/cashapp/turbine/releases/tag/0.7.0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ repositories {
mavenCentral()
}
dependencies {
testImplementation 'app.cash.turbine:turbine:0.9.0'
testImplementation 'app.cash.turbine:turbine:0.10.0'
}
```

Expand All @@ -37,7 +37,7 @@ repositories {
}
}
dependencies {
testImplementation 'app.cash.turbine:turbine:0.10.0-SNAPSHOT'
testImplementation 'app.cash.turbine:turbine:0.11.0-SNAPSHOT'
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ GROUP=app.cash.turbine
POM_ARTIFACT_ID=turbine

# HEY! If you change the major version here be sure to update release.yaml doc target folder!
VERSION_NAME=0.10.0-SNAPSHOT
VERSION_NAME=0.10.0

POM_NAME=Turbine
POM_DESCRIPTION=A small testing library for kotlinx.coroutines Flow.
Expand Down

0 comments on commit ae9549e

Please sign in to comment.