From 21c2fa3a25347ccee452065237d8ef2f825edb3a Mon Sep 17 00:00:00 2001 From: Jake Wharton Date: Fri, 30 Jun 2023 13:49:34 -0400 Subject: [PATCH] Prepare version 0.7.1 --- CHANGELOG.md | 11 ++++++++++- README.md | 7 ++++--- gradle.properties | 2 +- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bb0fedd7..b1dbc699d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ ## [Unreleased] +## [0.7.1] - 2023-06-30 + +New: +- Support Kotlin 1.8.22 viaC JetBrains Compose compiler 1.4.8. + + ## [0.7.0] - 2023-06-26 New: @@ -77,7 +83,10 @@ Breaking: Initial release! -[Unreleased]: https://github.com/JakeWharton/mosaic/compare/0.5.0...HEAD +[Unreleased]: https://github.com/JakeWharton/mosaic/compare/0.7.1...HEAD +[0.7.1]: https://github.com/JakeWharton/mosaic/releases/tag/0.7.1 +[0.7.0]: https://github.com/JakeWharton/mosaic/releases/tag/0.7.0 +[0.6.0]: https://github.com/JakeWharton/mosaic/releases/tag/0.6.0 [0.5.0]: https://github.com/JakeWharton/mosaic/releases/tag/0.5.0 [0.4.0]: https://github.com/JakeWharton/mosaic/releases/tag/0.4.0 [0.3.0]: https://github.com/JakeWharton/mosaic/releases/tag/0.3.0 diff --git a/README.md b/README.md index c90592f61..051084412 100644 --- a/README.md +++ b/README.md @@ -90,8 +90,8 @@ buildscript { mavenCentral() } dependencies { - classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.21' - classpath 'com.jakewharton.mosaic:mosaic-gradle-plugin:0.7.0' + classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.22' + classpath 'com.jakewharton.mosaic:mosaic-gradle-plugin:0.7.1' } } @@ -111,6 +111,7 @@ certain versions of Kotlin. | Kotlin | Mosaic | |--------|---------------| +| 1.8.22 | 0.7.1 | | 1.8.21 | 0.7.0 | | 1.8.20 | 0.6.0 | | 1.8.10 | 0.5.0 | @@ -133,7 +134,7 @@ buildscript { } } dependencies { - classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.21' + classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.22' classpath 'com.jakewharton.mosaic:mosaic-gradle-plugin:0.8.0-SNAPSHOT' } } diff --git a/gradle.properties b/gradle.properties index a6da1a52a..b9c860d44 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.jakewharton.mosaic -VERSION_NAME=0.8.0-SNAPSHOT +VERSION_NAME=0.7.1 SONATYPE_HOST=DEFAULT SONATYPE_AUTOMATIC_RELEASE=true