Prepare version 0.7.0
This commit is contained in:
parent
b60aab6c13
commit
edd6fa0137
13
CHANGELOG.md
13
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:
|
||||
|
||||
@ -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'
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user