From d69b9f42f88d761efe777b4aa2ca628551fbccb0 Mon Sep 17 00:00:00 2001 From: Jake Wharton Date: Thu, 14 Sep 2023 14:56:21 -0400 Subject: [PATCH] Prepare version 0.9.1 --- CHANGELOG.md | 10 +++++++++- README.md | 5 +++-- gradle.properties | 2 +- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f17c6ccac..ed4f26455 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ ## [Unreleased] +## [0.9.1] - 2023-09-14 + +New: +- Support Kotlin 1.9.10 via JetBrains Compose compiler 1.5.2. + +This version works with Kotlin 1.9.10 by default. + ## [0.9.0] - 2023-08-09 @@ -98,7 +105,8 @@ Breaking: Initial release! -[Unreleased]: https://github.com/JakeWharton/mosaic/compare/0.9.0...HEAD +[Unreleased]: https://github.com/JakeWharton/mosaic/compare/0.9.1...HEAD +[0.9.1]: https://github.com/JakeWharton/mosaic/releases/tag/0.9.1 [0.9.0]: https://github.com/JakeWharton/mosaic/releases/tag/0.9.0 [0.8.0]: https://github.com/JakeWharton/mosaic/releases/tag/0.8.0 [0.7.1]: https://github.com/JakeWharton/mosaic/releases/tag/0.7.1 diff --git a/README.md b/README.md index e182aba8c..eb5e795d5 100644 --- a/README.md +++ b/README.md @@ -90,8 +90,8 @@ buildscript { mavenCentral() } dependencies { - classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.0' - classpath 'com.jakewharton.mosaic:mosaic-gradle-plugin:0.9.0' + classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10' + classpath 'com.jakewharton.mosaic:mosaic-gradle-plugin:0.9.1' } } @@ -111,6 +111,7 @@ certain versions of Kotlin. | Kotlin | Mosaic | |--------|---------------| +| 1.9.10 | 0.9.1 | | 1.9.0 | 0.8.0 - 0.9.0 | | 1.8.22 | 0.7.1 | | 1.8.21 | 0.7.0 | diff --git a/gradle.properties b/gradle.properties index 990a3c5d3..70af2742a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.jakewharton.mosaic -VERSION_NAME=0.10.0-SNAPSHOT +VERSION_NAME=0.9.1 SONATYPE_HOST=DEFAULT SONATYPE_AUTOMATIC_RELEASE=true