Skip to content

Commit

Permalink
Upgrades Kotlin to 2.0.0-RC1, KSP to 1.0.20
Browse files Browse the repository at this point in the history
  • Loading branch information
GuilhE committed Apr 26, 2024
1 parent 8745e50 commit 5d79af2
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 13 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,7 @@ iOSInjectionProject/

### Gradle ###
.gradle
.kotlin/

# Ignore Gradle GUI config
gradle-app.setting
Expand Down
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# Changelog
---
## [1.6.0-ALPHA]

- Kotlin 2.0.0-RC1
- KSP 1.0.20

---

## [1.5.0-ALPHA]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ Kotlin Multiplatform and Compose Multiplatform are built upon the philosophy of

## Compatibility

| Version | Kotlin | KSP | K2 | Compose Multiplatform | Xcode |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------:|:------:|:---:|:---------------------:|:------:|
| [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.guilhe.kmp/kmp-composeuiviewcontroller-ksp/badge.svg)](https://search.maven.org/artifact/com.github.guilhe.kmp/kmp-composeuiviewcontroller-ksp) | 1.9.23 | 1.0.19 | Yes | 1.6.1 | 15.2.0 |
| Version | Kotlin | KSP | K2 | Compose Multiplatform | Xcode |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------:|:------:|:---:|:---------------------:|:------:|
| [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.guilhe.kmp/kmp-composeuiviewcontroller-ksp/badge.svg)](https://search.maven.org/artifact/com.github.guilhe.kmp/kmp-composeuiviewcontroller-ksp) | 2.0.0-RC1 | 1.0.20 | Yes | 1.6.10-beta02 | 15.2.0 |

The suffix `-ALPHA` and `-BETA` will be added to reflect JetBrain's [Compose Multiplatform stability levels](https://www.jetbrains.com/help/kotlin-multiplatform-dev/supported-platforms.html#current-platform-stability-levels-for-compose-multiplatform-ui-framework), until it becomes `STABLE`.

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ buildscript {

allprojects {
group = "com.github.guilhe.kmp"
version = "1.5.0-ALPHA"
version = "1.6.0-ALPHA"
}
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[versions]

kotlin = "1.9.23"
ksp = "1.9.23-1.0.19"
androidTools = "8.1.2"
kotlin = "2.0.0-RC1"
ksp = "2.0.0-RC1-1.0.20"
androidTools = "8.3.2"
compileTesting = "1.5.0"
junit = "4.13.2"
composeuiviewcontroller = "1.5.0-ALPHA"
composeuiviewcontroller = "1.6.0-ALPHA"

[plugins]

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Thu Aug 31 12:49:13 WEST 2023
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
1 change: 1 addition & 0 deletions sample/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,7 @@ iOSInjectionProject/

### Gradle ###
.gradle
.kotlin/

# Ignore Gradle GUI config
gradle-app.setting
Expand Down
5 changes: 2 additions & 3 deletions sample/shared/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
plugins {
alias(libs.plugins.kotlin.multiplatform)
alias(libs.plugins.ksp)
id("org.jetbrains.compose") version "1.6.1"
id("org.jetbrains.compose") version "1.6.10-beta02"
}

compose {
kotlinCompilerPlugin.set("1.5.10.1")
// kotlinCompilerPluginArgs.add("suppressKotlinVersionCompatibilityCheck=1.9.23")
kotlinCompilerPlugin.set("1.5.11-kt-2.0.0-RC1")
}

kotlin {
Expand Down

0 comments on commit 5d79af2

Please sign in to comment.