From edd6fa01379b00854bbe2722c66c3d5630014264 Mon Sep 17 00:00:00 2001 From: Jake Wharton Date: Mon, 26 Jun 2023 23:43:24 -0400 Subject: [PATCH] Prepare version 0.7.0 --- CHANGELOG.md | 13 +++++++++++++ README.md | 9 +++++---- gradle.properties | 2 +- 3 files changed, 19 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d9e08681..0bb0fedd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,19 @@ ## [Unreleased] +## [0.7.0] - 2023-06-26 + +New: +- Support Kotlin 1.8.21 via JetBrains Compose compiler 1.4.7. +- Add support for modifiers on layouts and built-in components. + There are two types which are built-in: `DrawModifier` and `LayoutModifier`. + The built-in functions are `drawBehind`, `background`, `layout`, and `padding`. +- Add Box component. + +Changed: +- Frames are now emitted slightly differently relying on Compose for signaling when a change has happened. Please report any problems. + + ## [0.6.0] - 2023-04-17 New: diff --git a/README.md b/README.md index d6d60a5eb..c90592f61 100644 --- a/README.md +++ b/README.md @@ -90,8 +90,8 @@ buildscript { mavenCentral() } dependencies { - classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20' - classpath 'com.jakewharton.mosaic:mosaic-gradle-plugin:0.5.0' + classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.21' + classpath 'com.jakewharton.mosaic:mosaic-gradle-plugin:0.7.0' } } @@ -111,6 +111,7 @@ certain versions of Kotlin. | Kotlin | Mosaic | |--------|---------------| +| 1.8.21 | 0.7.0 | | 1.8.20 | 0.6.0 | | 1.8.10 | 0.5.0 | | 1.8.0 | 0.3.0 - 0.4.0 | @@ -132,8 +133,8 @@ buildscript { } } dependencies { - classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20' - classpath 'com.jakewharton.mosaic:mosaic-gradle-plugin:0.7.0-SNAPSHOT' + classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.21' + classpath 'com.jakewharton.mosaic:mosaic-gradle-plugin:0.8.0-SNAPSHOT' } } diff --git a/gradle.properties b/gradle.properties index b09496efb..3e82537b0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.jakewharton.mosaic -VERSION_NAME=0.7.0-SNAPSHOT +VERSION_NAME=0.7.0 SONATYPE_HOST=DEFAULT RELEASE_SIGNING_ENABLED=true