Skip to content

Commit

Permalink
Prepare version 0.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Mar 30, 2023
1 parent dae5f32 commit 8660837
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
## [Unreleased]


## [0.12.2]
### Changed
- The default wall-clock timeout used to wait for an event has been increased from 1s to 3s.

### Fixed
- The exception thrown when no events have been received now includes the original timeout exception as its cause. This ensures the stacktrace contains the caller file and line information.
- Ensure `expectNoEvents()` fails if a completion or exception event occurred.
- Differentiate timeout and cancellation exceptions thrown from Turbine's own event timeout (which are thrown) from those which occur within the flow under test (which are available via `awaitError()`).


## [0.12.1]
### Changed
- Build with Kotlin 1.7.20
Expand Down Expand Up @@ -121,7 +131,8 @@
Initial release


[Unreleased]: https://github.com/cashapp/turbine/compare/0.12.1...HEAD
[Unreleased]: https://github.com/cashapp/turbine/compare/0.12.2...HEAD
[0.12.2]: https://github.com/cashapp/turbine/releases/tag/0.12.2
[0.12.1]: https://github.com/cashapp/turbine/releases/tag/0.12.1
[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
Expand Down
2 changes: 1 addition & 1 deletion 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.12.1'
testImplementation 'app.cash.turbine:turbine:0.12.2'
}
```

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.13.0-SNAPSHOT
VERSION_NAME=0.12.2

SONATYPE_AUTOMATIC_RELEASE=true
SONATYPE_HOST=DEFAULT
Expand Down

0 comments on commit 8660837

Please sign in to comment.