diff --git a/CHANGELOG.md b/CHANGELOG.md index eb5e23b4..f6e05899 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,20 @@ ## [Unreleased] +## [0.13.0] - 2023-05-11 +### Added +- New Kotlin/Native targets: + - `androidNativeArm32` + - `androidNativeArm64` + - `androidNativeX86` + - `androidNativeX64` + - `linuxArm64` + - `watchosDeviceArm64` + +### Changed +- Build with Kotlin 1.8.21 + + ## [0.12.3] ### Fixed - Ensure JVM classes target Java 8 rather than implicitly using the build JDK version. diff --git a/README.md b/README.md index b409b197..7673e543 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ repositories { mavenCentral() } dependencies { - testImplementation 'app.cash.turbine:turbine:0.12.3' + testImplementation 'app.cash.turbine:turbine:0.13.0' } ``` @@ -37,7 +37,7 @@ repositories { } } dependencies { - testImplementation 'app.cash.turbine:turbine:0.13.0-SNAPSHOT' + testImplementation 'app.cash.turbine:turbine:0.14.0-SNAPSHOT' } ``` diff --git a/gradle.properties b/gradle.properties index f85d5b6f..cda4d2fb 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.13.0-SNAPSHOT +VERSION_NAME=0.13.0 SONATYPE_AUTOMATIC_RELEASE=true SONATYPE_HOST=DEFAULT