Skip to content

Commit ca63eb5

Browse files
committed
Updates Kotlin and KSP
1 parent 2afc1d2 commit ca63eb5

File tree

7 files changed

+27
-13
lines changed

7 files changed

+27
-13
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## [2.3.0-RC-1.10.0-beta01]
4+
5+
- Kotlin 2.3.0-RC
6+
- KSP 2.3.2
7+
- SerializationPlugin 2.3.0-RC
8+
9+
---
10+
311
## [2.3.0-Beta2-1.10.0-beta01]
412

513
- CMP 1.10.0-beta01

CHANGELOG_PLUGIN.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Changelog
22

3-
## [2.3.0-Beta2-1.10.0-alpha03]
3+
## [2.3.0-RC-1.10.0-beta01]
4+
5+
- Compatible with 2.3.0-RC-1.10.0-beta01
6+
7+
---
8+
9+
## [2.3.0-Beta2-1.10.0-beta01]
410

511
- Compatible with 2.3.0-Beta2-1.10.0-beta01
612

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
KSP library and Gradle plugin for generating `ComposeUIViewController` and `UIViewControllerRepresentable` files when using [Compose Multiplatform](https://www.jetbrains.com/lp/compose-multiplatform/) for iOS.
66

7-
| Version | Kotlin | KSP | Compose Multiplatform | Xcode |
8-
|-----------------------------|:-----------:|:-----:|:---------------------:|:------:|
9-
| `2.3.0-Beta2-1.10.0-beta01` | 2.3.0-Beta2 | 2.3.0 | 1.10.0-beta01 | 26.1.0 |
7+
| Version | Kotlin | KSP | Compose Multiplatform | Xcode |
8+
|--------------------------|:--------:|:-----:|:---------------------:|:------:|
9+
| `2.3.0-RC-1.10.0-beta01` | 2.3.0-RC | 2.3.2 | 1.10.0-beta01 | 26.1.0 |
1010

1111
[![Android Weekly](https://androidweekly.net/issues/issue-583/badge)](https://androidweekly.net/issues/issue-583) [![Featured in Kotlin Weekly - Issue #378](https://img.shields.io/badge/Featured_in_Kotlin_Weekly-Issue_%23378-7878b4)](https://mailchi.mp/kotlinweekly/kotlin-weekly-378) [![Featured in Kotlin Weekly - Issue #389](https://img.shields.io/badge/Featured_in_Kotlin_Weekly-Issue_%23389-7878b4)](https://mailchi.mp/kotlinweekly/kotlin-weekly-389) <a href="https://jetc.dev/issues/177.html"><img src="https://img.shields.io/badge/As_Seen_In-jetc.dev_Newsletter_Issue_%23177-blue?logo=Jetpack+Compose&amp;logoColor=white" alt="As Seen In - jetc.dev Newsletter Issue #177"></a> <a href="https://jetc.dev/issues/188.html"><img src="https://img.shields.io/badge/As_Seen_In-jetc.dev_Newsletter_Issue_%23188-blue?logo=Jetpack+Compose&amp;logoColor=white" alt="As Seen In - jetc.dev Newsletter Issue #188"></a>
1212

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ buildscript {
1515

1616
allprojects {
1717
group = "com.github.guilhe.kmp"
18-
version = "2.3.0-Beta2-1.10.0-beta01"
18+
version = "2.3.0-RC-1.10.0-beta01"
1919
}
2020

2121
tasks.register("publishLibraryModules") {

gradle/libs.versions.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[versions]
22

3-
kotlin = "2.3.0-Beta2"
4-
ksp = "2.3.0"
3+
kotlin = "2.3.0-RC"
4+
ksp = "2.3.2"
55
kotlinCompose = "1.10.0-beta01"
66
kotlinxSerialization = "1.9.0"
7-
kotlinxSerializationPlugin = "2.3.0-Beta2"
7+
kotlinxSerializationPlugin = "2.3.0-RC"
88
kotlinxCollections = "0.4.0"
9-
dokka = "2.1.0-Beta"
9+
dokka = "2.1.0"
1010
gradlePublish = "1.3.1"
11-
compileTesting = "0.8.0"
12-
vanniktech = "0.34.0"
11+
compileTesting = "0.11.0"
12+
vanniktech = "0.35.0"
1313

1414
[plugins]
1515
gradle-publish = { id = "com.gradle.plugin-publish", version.ref = "gradlePublish" }

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies {
2727
testImplementation(libs.test.kotlin)
2828
}
2929

30-
version = "2.3.0-Beta2-1.10.0-beta01"
30+
version = "2.3.0-RC-1.10.0-beta01"
3131
group = "io.github.guilhe.kmp"
3232

3333
gradlePlugin {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ public class KmpComposeUIViewControllerPlugin : Plugin<Project> {
290290
listOf(iosAppFolderName, iosAppName, targetName, autoExport, exportFolderName)
291291

292292
internal companion object {
293-
private const val VERSION_LIBRARY = "2.3.0-Beta2-1.10.0-beta01"
293+
private const val VERSION_LIBRARY = "2.3.0-RC-1.10.0-beta01"
294294
private const val LOG_TAG = "KmpComposeUIViewControllerPlugin"
295295
internal const val PLUGIN_KMP = "org.jetbrains.kotlin.multiplatform"
296296
internal const val PLUGIN_KSP = "com.google.devtools.ksp"

0 commit comments

Comments
 (0)