Skip to content

Commit 7a7385f

Browse files
committed
Updates Kotlin
1 parent dfd341b commit 7a7385f

File tree

9 files changed

+23
-9
lines changed

9 files changed

+23
-9
lines changed

CHANGELOG.md

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

3+
## [2.3.0-RC3-1.10.0-rc02]
4+
5+
- Kotlin 2.3.0-RC3
6+
- CMP 1.10.0-rc02
7+
8+
---
9+
310
## [2.3.0-RC2-1.10.0-rc01]
411

512
- Kotlin 2.3.0-RC2
613
- CMP 1.10.0-rc01
714

15+
---
816

917
## [2.3.0-RC-1.10.0-beta01]
1018

CHANGELOG_PLUGIN.md

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

3+
## [2.3.0-RC3-1.10.0-rc02]
4+
5+
- Compatible with 2.3.0-RC3-1.10.0-rc02
6+
7+
---
8+
39
## [2.3.0-RC2-1.10.0-rc01]
410

511
- Compatible with 2.3.0-RC2-1.10.0-rc01

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ KSP library and Gradle plugin for generating `ComposeUIViewController` and `UIVi
66

77
| Version | Kotlin | KSP | Compose Multiplatform | Xcode |
88
|-------------------------|:---------:|:-----:|:---------------------:|:------:|
9-
| `2.3.0-RC2-1.10.0-rc01` | 2.3.0-RC2 | 2.3.3 | 1.10.0-rc01 | 26.1.0 |
9+
| `2.3.0-RC3-1.10.0-rc02` | 2.3.0-RC3 | 2.3.3 | 1.10.0-rc02 | 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-RC2-1.10.0-rc01"
18+
version = "2.3.0-RC3-1.10.0-rc02"
1919
}
2020

2121
tasks.register("publishLibraryModules") {

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
kotlin = "2.3.0-RC2"
2+
kotlin = "2.3.0-RC3"
33
kotlinxSerialization = "1.9.0"
44
ksp = "2.3.3"
55

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-RC2-1.10.0-rc01"
30+
version = "2.3.0-RC3-1.10.0-rc02"
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
@@ -292,7 +292,7 @@ public class KmpComposeUIViewControllerPlugin : Plugin<Project> {
292292
listOf(iosAppFolderName, iosAppName, targetName, autoExport, exportFolderName)
293293

294294
internal companion object {
295-
private const val VERSION_LIBRARY = "2.3.0-RC2-1.10.0-rc01"
295+
private const val VERSION_LIBRARY = "2.3.0-RC3-1.10.0-rc02"
296296
private const val LOG_TAG = "KmpComposeUIViewControllerPlugin"
297297
internal const val PLUGIN_KMP = "org.jetbrains.kotlin.multiplatform"
298298
internal const val PLUGIN_KSP = "com.google.devtools.ksp"

kmp-composeuiviewcontroller-ksp/src/main/kotlin/com/github/guilhe/kmp/composeuiviewcontroller/ksp/Processor.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,12 +180,12 @@ internal class Processor(
180180

181181
private fun buildExternalModuleParameters(moduleMetadata: List<ModuleMetadata>, imports: List<String>): MutableMap<String, String> {
182182
val result = mutableMapOf<String, String>()
183-
imports.forEach { it ->
183+
imports.forEach {
184184
val type = it.split(".").last()
185185
val import = it.split(".$type").first()
186186
moduleMetadata
187187
.filter { module -> module.packageNames.contains(import) }
188-
.forEach { module -> result[type] = type }
188+
.forEach { _ -> result[type] = type }
189189
}
190190
return result
191191
}

sample/gradle/libs.versions.toml

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

3-
kotlin = "2.3.0-RC2"
4-
composeMultiplatform = "1.10.0-rc01"
3+
kotlin = "2.3.0-RC3"
4+
composeMultiplatform = "1.10.0-rc02"
55

66
composeMaterial3 = "1.9.0"
77
kotlinxCollections = "0.4.0"

0 commit comments

Comments
 (0)