diff --git a/CHANGELOG.md b/CHANGELOG.md index 21d3b23d..8e169d43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ ## [Unreleased] +## [0.5.2] +### Fixed +- Support running on a background thread with Kotlin/Native. + ## [0.5.1] ### Added - Support watchOS 64-bit. @@ -48,7 +52,8 @@ Initial release -[Unreleased]: https://github.com/cashapp/turbine/compare/0.5.1...HEAD +[Unreleased]: https://github.com/cashapp/turbine/compare/0.5.2...HEAD +[0.5.2]: https://github.com/cashapp/turbine/releases/tag/0.5.2 [0.5.1]: https://github.com/cashapp/turbine/releases/tag/0.5.1 [0.5.0]: https://github.com/cashapp/turbine/releases/tag/0.5.0 [0.5.0-rc1]: https://github.com/cashapp/turbine/releases/tag/0.5.0-rc1 diff --git a/README.md b/README.md index 8a2c2559..f0dae74f 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ repositories { mavenCentral() } dependencies { - testImplementation 'app.cash.turbine:turbine:0.5.1' + testImplementation 'app.cash.turbine:turbine:0.5.2' } ``` diff --git a/gradle.properties b/gradle.properties index b501d864..e565c865 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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.6.0-SNAPSHOT +VERSION_NAME=0.5.2 POM_NAME=Turbine POM_DESCRIPTION=A small testing library for kotlinx.coroutines Flow.