Skip to content

Commit

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


## [0.12.0]
### Added
- Support specifying a human-readable name for differentiating the failures of multiple Turbines

### Fixed
- Properly catch all `Throwable` subtypes from failures in flows and channels as events.


## [0.11.0]
### Added
- Restore timeout support. By default a 1-second timeout will be enforced when awaiting an event. This can be customized by supplying a `timeout` argument or by using the `withTurbineTimeout` wrapper function. Timeouts will always use wall clock time even when using a virtual time dispatcher.
Expand Down Expand Up @@ -104,7 +112,8 @@
Initial release


[Unreleased]: https://github.com/cashapp/turbine/compare/0.11.0...HEAD
[Unreleased]: https://github.com/cashapp/turbine/compare/0.12.0...HEAD
[0.12.0]: https://github.com/cashapp/turbine/releases/tag/0.12.0
[0.11.0]: https://github.com/cashapp/turbine/releases/tag/0.11.0
[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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -22,7 +22,7 @@ repositories {
mavenCentral()
}
dependencies {
testImplementation 'app.cash.turbine:turbine:0.11.0'
testImplementation 'app.cash.turbine:turbine:0.12.0'
}
```

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

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
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.12.0-SNAPSHOT
VERSION_NAME=0.12.0

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

0 comments on commit fddacdd

Please sign in to comment.