Skip to content

Commit 7346dde

Browse files
committed
2.4.0-Beta1-1.11.0-beta01
1 parent 51d2a94 commit 7346dde

8 files changed

Lines changed: 22 additions & 9 deletions

File tree

CHANGELOG.md

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

3+
## [2.4.0-Beta1-1.11.0-beta01]
4+
5+
- Kotlin 2.4.0-Beta1
6+
- CMP 1.11.0-beta01
7+
8+
---
9+
310
## [2.3.20-1.11.0-alpha04]
411

512
- CMP 1.11.0-alpha04

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.4.0-Beta1-1.11.0-beta01]
4+
5+
- Compatible with 2.4.0-Beta1-1.11.0-beta01
6+
7+
---
8+
39
## [2.3.20-1.11.0-alpha04]
410

511
- Compatible with 2.3.20-1.11.0-alpha04

README.md

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

99
| [Version](https://plugins.gradle.org/plugin/io.github.guilhe.kmp.plugin-composeuiviewcontroller) | [Kotlin](https://github.com/JetBrains/kotlin/releases) | [KSP](https://github.com/Google/KSP/releases) | [Compose Multiplatform](https://github.com/JetBrains/compose-multiplatform/releases) | Xcode |
1010
|--------------------------------------------------------------------------------------------------|:------------------------------------------------------:|:---------------------------------------------:|:------------------------------------------------------------------------------------:|:------:|
11-
| 2.3.20-1.11.0-alpha04 | 2.3.20 | 2.3.6 | 1.11.0-alpha04 | 26.3.0 |
11+
| 2.3.20-1.11.0-beta01 | 2.4.0-Beta1 | 2.3.6 | 1.11.0-beta01 | 26.3.0 |
1212

1313
[![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>
1414

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.20-1.11.0-alpha04"
18+
version = "2.4.0-Beta1-1.11.0-beta01"
1919
}
2020

2121
dependencies {

gradle/libs.versions.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[versions]
2-
kotlin = "2.3.20"
2+
kotlin = "2.4.0-Beta1"
33
kotlinxSerialization = "1.10.0"
44
ksp = "2.3.6"
55

6-
dokka = "2.1.0"
7-
gradlePublish = "2.0.0"
6+
dokka = "2.2.0"
7+
gradlePublish = "2.1.0"
88
compileTesting = "0.12.1"
99
vanniktech = "0.36.0"
1010

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.20-1.11.0-alpha04"
30+
version = "2.4.0-Beta1-1.11.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
@@ -347,7 +347,7 @@ public class KmpComposeUIViewControllerPlugin : Plugin<Project> {
347347
listOf(iosAppFolderName, iosAppName, targetName, autoExport, exportFolderName)
348348

349349
internal companion object {
350-
private const val VERSION_LIBRARY = "2.3.20-1.11.0-alpha04"
350+
private const val VERSION_LIBRARY = "2.4.0-Beta1-1.11.0-beta01"
351351
private const val LOG_TAG = "KmpComposeUIViewControllerPlugin"
352352
internal const val PLUGIN_KMP = "org.jetbrains.kotlin.multiplatform"
353353
internal const val PLUGIN_KSP = "com.google.devtools.ksp"

sample/gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
2-
kotlin = "2.3.20"
3-
composeMultiplatform = "1.11.0-alpha04"
2+
kotlin = "2.4.0-Beta1"
3+
composeMultiplatform = "1.11.0-beta01"
44

55
composeMaterial3 = "1.9.0"
66
kotlinxCollections = "0.4.0"

0 commit comments

Comments
 (0)