Skip to content

Commit 48d9298

Browse files
committed
Updates Kotlin KSP and CMP
1 parent f889365 commit 48d9298

File tree

8 files changed

+24
-9
lines changed

8 files changed

+24
-9
lines changed

.idea/kotlinc.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [2.1.10-1.8.0-alpha03-BETA]
4+
5+
- Kotlin 2.1.10
6+
- KSP 1.0.30
7+
- CMP 1.8.0-alpha03
8+
9+
---
10+
311
## [2.1.0-1.8.0-alpha02-BETA]
412

513
- CMP 1.8.0-alpha02

CHANGELOG_PLUGIN.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
# Changelog
2+
3+
## [1.2.5]
4+
5+
- Compatible with 2.1.10-1.8.0-alpha03-BETA
6+
7+
---
8+
29
## [1.2.4]
310

4-
- 2.1.0-1.8.0-alpha02-BETA
11+
- Compatible with 2.1.0-1.8.0-alpha02-BETA
512

613
---
714

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ KSP library for generating `ComposeUIViewController` and `UIViewControllerRepres
66

77
| Version | Kotlin | KSP | Compose Multiplatform | Xcode |
88
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------:|:------:|:---------------------:|:------:|
9-
| [![Gradle Plugin Portal Version](https://img.shields.io/gradle-plugin-portal/v/io.github.guilhe.kmp.plugin-composeuiviewcontroller)](https://plugins.gradle.org/plugin/io.github.guilhe.kmp.plugin-composeuiviewcontroller) | 2.1.0 | 1.0.29 | 1.8.0-alpha02 | 16.2.0 |
9+
| [![Gradle Plugin Portal Version](https://img.shields.io/gradle-plugin-portal/v/io.github.guilhe.kmp.plugin-composeuiviewcontroller)](https://plugins.gradle.org/plugin/io.github.guilhe.kmp.plugin-composeuiviewcontroller) | 2.1.10 | 1.0.30 | 1.8.0-alpha03 | 16.2.0 |
1010

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

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ buildscript {
1414

1515
allprojects {
1616
group = "com.github.guilhe.kmp"
17-
version = "2.1.0-1.8.0-alpha02-BETA"
17+
version = "2.1.10-1.8.0-alpha03-BETA"
1818
}
1919

2020
tasks.register("publishLibraryModules") {

gradle/libs.versions.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[versions]
22

3-
kotlin = "2.1.0"
4-
ksp = "2.1.0-1.0.29"
5-
kotlinCompose = "1.8.0-alpha02"
3+
kotlin = "2.1.10"
4+
ksp = "2.1.10-1.0.30"
5+
kotlinCompose = "1.8.0-alpha03"
66
kotlinxSerialization = "1.8.0"
77
kotlinxSerializationPlugin = "2.1.0"
88
dokka = "2.0.0-Beta"

kmp-composeuiviewcontroller-gradle-plugin/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dependencies {
2828
testImplementation(libs.test.kotlin)
2929
}
3030

31-
version = "1.2.4"
31+
version = "1.2.5"
3232
group = "io.github.guilhe.kmp"
3333

3434
gradlePlugin {

kmp-composeuiviewcontroller-gradle-plugin/src/main/kotlin/com/github/guilhe/kmp/composeuiviewcontroller/gradle/KmpComposeUIViewControllerPlugin.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ public class KmpComposeUIViewControllerPlugin : Plugin<Project> {
222222
}
223223

224224
internal companion object {
225-
private const val VERSION_LIBRARY = "2.1.0-1.8.0-alpha02-BETA"
225+
private const val VERSION_LIBRARY = "2.1.10-1.8.0-alpha03-BETA"
226226
private const val LOG_TAG = "KmpComposeUIViewControllerPlugin"
227227
internal const val PLUGIN_KMP = "org.jetbrains.kotlin.multiplatform"
228228
internal const val PLUGIN_KSP = "com.google.devtools.ksp"

0 commit comments

Comments
 (0)