From fe20475d5e70d623488805257ecbc19289224798 Mon Sep 17 00:00:00 2001 From: Jake Wharton Date: Fri, 12 Aug 2022 00:15:36 -0400 Subject: [PATCH] Prepare version 0.2.0 --- CHANGELOG.md | 9 ++++++++- README.md | 11 +++++------ gradle.properties | 2 +- 3 files changed, 14 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d2e5a20c..a62858a0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,10 +3,17 @@ ## [Unreleased] +## [0.2.0] - 2022-08-12 + + - Support Kotlin 1.7.10 via Compose compiler 1.3.0. + - Migrate from custom build of Compose compiler and Compose runtime to Google's Compose compiler and JetBrains' multiplatform Compose runtime. Note that this will require you have the Google Maven repositories in your Gradle repositories (`google()`). + + ## [0.1.0] - 2021-06-25 Initial release! -[Unreleased]: https://github.com/JakeWharton/mosaic/compare/0.1.0...HEAD +[Unreleased]: https://github.com/JakeWharton/mosaic/compare/0.2.0...HEAD +[0.2.0]: https://github.com/JakeWharton/mosaic/releases/tag/0.2.0 [0.1.0]: https://github.com/JakeWharton/mosaic/releases/tag/0.1.0 diff --git a/README.md b/README.md index 0afb17167..ea96c5961 100644 --- a/README.md +++ b/README.md @@ -92,8 +92,8 @@ buildscript { mavenCentral() } dependencies { - classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10' - classpath 'com.jakewharton.mosaic:mosaic-gradle-plugin:0.1.0' + classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10' + classpath 'com.jakewharton.mosaic:mosaic-gradle-plugin:0.2.0' } } @@ -114,9 +114,8 @@ certain versions of Kotlin. | Kotlin | Mosaic | |--------|--------------------| | 1.5.10 | 0.1.0 | -| 1.5.20 | Blocked on Compose | +| 1.7.10 | 0.2.0 | -Versions of Kotlin older than 1.5.10 are not supported. Versions newer than those listed may be supported but are untested.
@@ -132,8 +131,8 @@ buildscript { } } dependencies { - classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10' - classpath 'com.jakewharton.mosaic:mosaic-gradle-plugin:0.2.0-SNAPSHOT' + classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10' + classpath 'com.jakewharton.mosaic:mosaic-gradle-plugin:0.3.0-SNAPSHOT' } } diff --git a/gradle.properties b/gradle.properties index e1548863b..640c256f9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.jakewharton.mosaic -VERSION_NAME=0.2.0-SNAPSHOT +VERSION_NAME=0.2.0 POM_DESCRIPTION=Jetpack Compose for console UI