Skip to content

Commit e5d75f7

Browse files
committed
CMP 1.8.0
1 parent 8e280cf commit e5d75f7

File tree

6 files changed

+22
-9
lines changed

6 files changed

+22
-9
lines changed

CHANGELOG.md

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

3+
## [2.1.20-1.8.0]
4+
5+
- 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 🎉
6+
- KSP 2.0.1
7+
- Serialization 1.8.1
8+
- SerializationPlugin 2.1.20
9+
10+
---
11+
312
## [2.1.20-1.8.0-beta02-BETA]
413

514
- KSP 2.0.0

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+
## [1.2.9]
4+
-
5+
- Compatible with 2.1.20-1.8.0
6+
7+
---
8+
39
## [1.2.8]
410

511
- Compatible with 2.1.20-1.8.0-beta02-BETA

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +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.20 | 2.0.0 | 1.8.0-beta02 | 16.3.0 |
10-
11-
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`.
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.20 | 2.0.1 | 1.8.0 | 16.3.0 |
1210

1311
[![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>
1412

build.gradle.kts

Lines changed: 1 addition & 1 deletion
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.20-1.8.0-beta02-BETA"
17+
version = "2.1.20-1.8.0"
1818
}
1919

2020
tasks.register("publishLibraryModules") {

gradle/libs.versions.toml

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

33
kotlin = "2.1.20"
4-
ksp = "2.1.20-2.0.0"
5-
kotlinCompose = "1.8.0-beta02"
6-
kotlinxSerialization = "1.8.0"
7-
kotlinxSerializationPlugin = "2.1.0"
4+
ksp = "2.1.20-2.0.1"
5+
kotlinCompose = "1.8.0"
6+
kotlinxSerialization = "1.8.1"
7+
kotlinxSerializationPlugin = "2.1.20"
88
dokka = "2.0.0"
99
gradlePublish = "1.3.1"
1010
compileTesting = "0.7.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.20-1.8.0-beta02-BETA"
225+
private const val VERSION_LIBRARY = "2.1.20-1.8.0"
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)