Skip to content

Commit

Permalink
Prepare version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Aug 12, 2022
1 parent fb5ec42 commit fe20475
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,17 @@
## [Unreleased]


## [0.2.0] - 2022-08-12

- Support Kotlin 1.7.10 via Compose compiler 1.3.0.
- Migrate from custom build of Compose compiler and Compose runtime to Google's Compose compiler and JetBrains' multiplatform Compose runtime. Note that this will require you have the Google Maven repositories in your Gradle repositories (`google()`).


## [0.1.0] - 2021-06-25

Initial release!


[Unreleased]: https://github.com/JakeWharton/mosaic/compare/0.1.0...HEAD
[Unreleased]: https://github.com/JakeWharton/mosaic/compare/0.2.0...HEAD
[0.2.0]: https://github.com/JakeWharton/mosaic/releases/tag/0.2.0
[0.1.0]: https://github.com/JakeWharton/mosaic/releases/tag/0.1.0
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10'
classpath 'com.jakewharton.mosaic:mosaic-gradle-plugin:0.1.0'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10'
classpath 'com.jakewharton.mosaic:mosaic-gradle-plugin:0.2.0'
}
}
Expand All @@ -114,9 +114,8 @@ certain versions of Kotlin.
| Kotlin | Mosaic |
|--------|--------------------|
| 1.5.10 | 0.1.0 |
| 1.5.20 | Blocked on Compose |
| 1.7.10 | 0.2.0 |

Versions of Kotlin older than 1.5.10 are not supported.
Versions newer than those listed may be supported but are untested.

<details>
Expand All @@ -132,8 +131,8 @@ buildscript {
}
}
dependencies {
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10'
classpath 'com.jakewharton.mosaic:mosaic-gradle-plugin:0.2.0-SNAPSHOT'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10'
classpath 'com.jakewharton.mosaic:mosaic-gradle-plugin:0.3.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.2.0-SNAPSHOT
VERSION_NAME=0.2.0

POM_DESCRIPTION=Jetpack Compose for console UI

Expand Down

0 comments on commit fe20475

Please sign in to comment.