Skip to content

Commit

Permalink
New release
Browse files Browse the repository at this point in the history
  • Loading branch information
GuilhE committed Jan 21, 2025
1 parent 6ee4ed1 commit b8e7ae3
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [2.1.0-1.7.2-BETA]

- CMP 1.7.2

---

## [2.1.0-1.7.1-BETA]

- Kotlin 2.1.0
Expand All @@ -9,6 +15,7 @@
- Migrates to [ZacSweers/kotlin-compile-testing](https://github.com/ZacSweers/kotlin-compile-testing)

---

## [2.0.21-1.7.0-BETA-1]

- Fixes type resolve for Functions when `ksp.useKSP2=true`
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG_PLUGIN.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [1.2.3]

- Compatible with 2.1.0-1.7.2-BETA

---

## [1.2.2]

- Changed file creation logic from `registerCopyFilesToXcodeTask`
Expand Down Expand Up @@ -84,7 +90,6 @@

- Compatible with 2.0.20-Beta1-1.6.11-BETA-3


---

## [1.1.0]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ KSP library for generating `ComposeUIViewController` and `UIViewControllerRepres

| Version | Kotlin | KSP | Compose Multiplatform | Xcode |
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------:|:------:|:---------------------:|:------:|
| [![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.0 | 1.0.29 | 1.7.1 | 16.2.0 |
| [![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.0 | 1.0.29 | 1.7.2 | 16.2.0 |

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`.

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ buildscript {

allprojects {
group = "com.github.guilhe.kmp"
version = "2.1.0-1.7.1-BETA"
version = "2.1.0-1.7.2-BETA"
}

tasks.register("publishLibraryModules") {
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

kotlin = "2.1.0"
ksp = "2.1.0-1.0.29"
kotlinCompose = "1.8.0-alpha01"
kotlinCompose = "1.8.0-alpha02"
kotlinxSerialization = "1.7.3"
kotlinxSerializationPlugin = "2.0.20"
dokka = "2.0.0-Beta"
Expand Down
2 changes: 1 addition & 1 deletion kmp-composeuiviewcontroller-gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies {
testImplementation(libs.test.kotlin)
}

version = "1.2.2"
version = "1.2.3"
group = "io.github.guilhe.kmp"

gradlePlugin {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ public class KmpComposeUIViewControllerPlugin : Plugin<Project> {
}

internal companion object {
private const val VERSION_LIBRARY = "2.1.0-1.7.1-BETA"
private const val VERSION_LIBRARY = "2.1.0-1.7.2-BETA"
private const val LOG_TAG = "KmpComposeUIViewControllerPlugin"
internal const val PLUGIN_KMP = "org.jetbrains.kotlin.multiplatform"
internal const val PLUGIN_KSP = "com.google.devtools.ksp"
Expand Down

0 comments on commit b8e7ae3

Please sign in to comment.