Prepare version 0.7.0

This commit is contained in:
Jake Wharton 2023-06-26 23:43:24 -04:00
parent b60aab6c13
commit edd6fa0137
3 changed files with 19 additions and 5 deletions

View File

@ -3,6 +3,19 @@
## [Unreleased] ## [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 ## [0.6.0] - 2023-04-17
New: New:

View File

@ -90,8 +90,8 @@ buildscript {
mavenCentral() mavenCentral()
} }
dependencies { dependencies {
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20' classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.21'
classpath 'com.jakewharton.mosaic:mosaic-gradle-plugin:0.5.0' classpath 'com.jakewharton.mosaic:mosaic-gradle-plugin:0.7.0'
} }
} }
@ -111,6 +111,7 @@ certain versions of Kotlin.
| Kotlin | Mosaic | | Kotlin | Mosaic |
|--------|---------------| |--------|---------------|
| 1.8.21 | 0.7.0 |
| 1.8.20 | 0.6.0 | | 1.8.20 | 0.6.0 |
| 1.8.10 | 0.5.0 | | 1.8.10 | 0.5.0 |
| 1.8.0 | 0.3.0 - 0.4.0 | | 1.8.0 | 0.3.0 - 0.4.0 |
@ -132,8 +133,8 @@ buildscript {
} }
} }
dependencies { dependencies {
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20' classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.21'
classpath 'com.jakewharton.mosaic:mosaic-gradle-plugin:0.7.0-SNAPSHOT' classpath 'com.jakewharton.mosaic:mosaic-gradle-plugin:0.8.0-SNAPSHOT'
} }
} }

View File

@ -1,5 +1,5 @@
GROUP=com.jakewharton.mosaic GROUP=com.jakewharton.mosaic
VERSION_NAME=0.7.0-SNAPSHOT VERSION_NAME=0.7.0
SONATYPE_HOST=DEFAULT SONATYPE_HOST=DEFAULT
RELEASE_SIGNING_ENABLED=true RELEASE_SIGNING_ENABLED=true