Skip to content

Commit 49fd07b

Browse files
committed
Updates CMP
1 parent 9b34fb9 commit 49fd07b

File tree

6 files changed

+15
-5
lines changed

6 files changed

+15
-5
lines changed

CHANGELOG.md

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

3+
## [2.1.21-1.8.1]
4+
5+
- CMP 1.8.1
6+
37
## [2.1.21-1.8.0]
48

59
- CMP 1.8.0 is [stable](https://blog.jetbrains.com/kotlin/2025/05/compose-multiplatform-1-8-0-released-compose-multiplatform-for-ios-is-stable-and-production-ready/) for iOS 🎉

CHANGELOG_PLUGIN.md

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

3+
## [1.2.10]
4+
5+
- Compatible with 2.1.21-1.8.1
6+
7+
---
8+
39
## [1.2.9]
4-
-
10+
511
- Compatible with 2.1.21-1.8.0
612

713
---

README.md

Lines changed: 1 addition & 1 deletion
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.21 | 2.0.1 | 1.8.0 | 16.3.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.21 | 2.0.1 | 1.8.1 | 16.3.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.1.21-1.8.0"
18+
version = "2.1.21-1.8.1"
1919
}
2020

2121
tasks.register("publishLibraryModules") {

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
kotlin = "2.1.21"
44
ksp = "2.1.21-2.0.1"
5-
kotlinCompose = "1.8.0"
5+
kotlinCompose = "1.8.1"
66
kotlinxSerialization = "1.8.1"
77
kotlinxSerializationPlugin = "2.1.21"
88
dokka = "2.0.0"

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
@@ -222,7 +222,7 @@ public class KmpComposeUIViewControllerPlugin : Plugin<Project> {
222222
}
223223

224224
internal companion object {
225-
private const val VERSION_LIBRARY = "2.1.21-1.8.0"
225+
private const val VERSION_LIBRARY = "2.1.21-1.8.1"
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)