Skip to content

Commit

Permalink
Prepare version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Oct 26, 2021
1 parent f9c0820 commit 63b4e09
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
## [Unreleased]


## [0.7.0]
### Changed
- Moved APIs using Kotlin's experimental time to separate extensions. You can now use the library
without worrying about incompatibilities with Kotlin version or coroutine library version.
- Removed APIs deprecated in 0.6.x.

## [0.6.1]
### Added
- Support Apple silicon targets for native users.
Expand Down Expand Up @@ -63,7 +69,8 @@
Initial release


[Unreleased]: https://github.com/cashapp/turbine/compare/0.6.1...HEAD
[Unreleased]: https://github.com/cashapp/turbine/compare/0.7.0...HEAD
[0.7.0]: https://github.com/cashapp/turbine/releases/tag/0.7.0
[0.6.1]: https://github.com/cashapp/turbine/releases/tag/0.6.1
[0.6.0]: https://github.com/cashapp/turbine/releases/tag/0.6.0
[0.5.2]: https://github.com/cashapp/turbine/releases/tag/0.5.2
Expand Down
6 changes: 3 additions & 3 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.6.1'
testImplementation 'app.cash.turbine:turbine:0.7.0'
}
```

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

Expand Down Expand Up @@ -182,7 +182,7 @@ channelFlow {
Thread.sleep(2_000)
send("item")
}
}.test(timeout = 3.seconds) {
}.test(timeout = 3_000) {
assertEquals("item", awaitItem())
awaitComplete()
}
Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
4. Commit

```
$ git commit -am "Prepare version X.Y.X"
$ git commit -am "Prepare version X.Y.Z"
```

5. Tag
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.7.0-SNAPSHOT
VERSION_NAME=0.8.0-SNAPSHOT

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

0 comments on commit 63b4e09

Please sign in to comment.