From 6c2c5aef387e77b39808cbc754345bfa1eab3c90 Mon Sep 17 00:00:00 2001 From: Jake Wharton Date: Thu, 11 May 2023 11:41:21 -0400 Subject: [PATCH] Prepare version 0.13.0 --- CHANGELOG.md | 14 ++++++++++++++ README.md | 4 ++-- gradle.properties | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) 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