diff --git a/CHANGELOG.md b/CHANGELOG.md index f051a6b8..595d932f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,21 @@ # Change Log ## [Unreleased] +[Unreleased]: https://github.com/cashapp/turbine/compare/1.1.0...HEAD + +### Added + +### Changed + +### Fixed + + +## [1.1.0] - 2024-03-06 +[1.1.0]: https://github.com/cashapp/turbine/releases/tag/1.1.0 + +### Changed +- Add `wasmJs` target, remove `iosArm32` and `watchosX86` targets. +- Throw unconsumed events if scope is externally canceled. ## [1.0.0] - 2023-05-21 @@ -161,7 +176,6 @@ Note: This version has a transitive dependency on kotlinx.coroutines 1.7.0. If y Initial release -[Unreleased]: https://github.com/cashapp/turbine/compare/1.0.0...HEAD [1.0.0]: https://github.com/cashapp/turbine/releases/tag/1.0.0 [0.13.0]: https://github.com/cashapp/turbine/releases/tag/0.13.0 [0.12.3]: https://github.com/cashapp/turbine/releases/tag/0.12.3 diff --git a/README.md b/README.md index 4e66f28b..caf2b11d 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ repositories { mavenCentral() } dependencies { - testImplementation("app.cash.turbine:turbine:1.0.0") + testImplementation("app.cash.turbine:turbine:1.1.0") } ``` @@ -37,7 +37,7 @@ repositories { } } dependencies { - testImplementation("app.cash.turbine:turbine:1.1.0-SNAPSHOT") + testImplementation("app.cash.turbine:turbine:1.2.0-SNAPSHOT") } ``` diff --git a/gradle.properties b/gradle.properties index b338bff5..9c77c14f 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=1.1.0-SNAPSHOT +VERSION_NAME=1.1.0 SONATYPE_AUTOMATIC_RELEASE=true SONATYPE_HOST=DEFAULT