From 4649caab95825d22620ed8fb1c4046c804dc2859 Mon Sep 17 00:00:00 2001 From: Jake Wharton Date: Tue, 31 Oct 2023 16:16:01 -0400 Subject: [PATCH] Prepare version 1.3.0 --- CHANGELOG.md | 10 ++++++++++ README.md | 5 +++-- gradle.properties | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b2522c0..957c1694 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,16 @@ ## [Unreleased] +## [1.3.0] - 2023-10-31 🎃 + +New: +- Add `CoroutineContext` parameter to `launchMolecule` to contribute elements to the combined + context that is used for running Compose. +- Support for Kotlin 1.9.20 + +This version works with Kotlin 1.9.20 by default. + + ## [1.2.1] - 2023-09-14 New: diff --git a/README.md b/README.md index 6f012418..7e2724c9 100644 --- a/README.md +++ b/README.md @@ -171,7 +171,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'app.cash.molecule:molecule-gradle-plugin:1.2.1' + classpath 'app.cash.molecule:molecule-gradle-plugin:1.3.0' } } @@ -183,6 +183,7 @@ certain versions of Kotlin. | Kotlin | Molecule | |--------|----------------| +| 1.9.20 | 1.3.0 | | 1.9.10 | 1.2.1 | | 1.9.0 | 1.1.0 - 1.2.0 | | 1.8.22 | 0.11.0 - 1.0.0 | @@ -209,7 +210,7 @@ buildscript { } } dependencies { - classpath 'app.cash.molecule:molecule-gradle-plugin:1.3.0-SNAPSHOT' + classpath 'app.cash.molecule:molecule-gradle-plugin:1.4.0-SNAPSHOT' } } diff --git a/gradle.properties b/gradle.properties index a2549357..6819adb7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ GROUP=app.cash.molecule # HEY! If you change the major version here be sure to update release.yaml doc target folder! -VERSION_NAME=1.3.0-SNAPSHOT +VERSION_NAME=1.3.0 SONATYPE_AUTOMATIC_RELEASE=true SONATYPE_HOST=DEFAULT