Skip to content

Commit

Permalink
Prepare version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Jun 27, 2023
1 parent b60aab6 commit edd6fa0
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
}
Expand All @@ -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 |
Expand All @@ -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'
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit edd6fa0

Please sign in to comment.