Skip to content

Commit

Permalink
Prepare version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Nov 23, 2020
1 parent e6fcbda commit 0354e24
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Change Log

## [Unreleased]


## [0.3.0]
### Added
- `cancelAndConsumeRemainingEvents()` cancels the `Flow` and returns any unconsumed events which were already received.
- `expectEvent()` waits for an event (item, complete, or error) and returns it as a sealed type `Event`.
Expand All @@ -22,7 +25,8 @@
Initial release


[Unreleased]: https://github.com/cashapp/turbine/compare/0.2.1...HEAD
[Unreleased]: https://github.com/cashapp/turbine/compare/0.3.0...HEAD
[0.3.0]: https://github.com/cashapp/turbine/releases/tag/0.3.0
[0.2.1]: https://github.com/cashapp/turbine/releases/tag/0.2.1
[0.2.0]: https://github.com/cashapp/turbine/releases/tag/0.2.0
[0.1.1]: https://github.com/cashapp/turbine/releases/tag/0.1.1
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.2.1'
testImplementation 'app.cash.turbine:turbine:0.3.0'
}
```

Expand All @@ -37,7 +37,7 @@ repositories {
}
}
dependencies {
testImplementation 'app.cash.turbine:turbine:0.3.0-SNAPSHOT'
testImplementation 'app.cash.turbine:turbine:0.4.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.3.0-SNAPSHOT
VERSION_NAME=0.3.0

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

0 comments on commit 0354e24

Please sign in to comment.