Skip to content

Commit 0593644

Browse files
authored
Merge pull request #384 from mikepenz/feature/compose_1.8.0
Compose 1.8.0 / Compose Multiplatform 1.8.0-rc01
2 parents 9606b1f + ab7776f commit 0593644

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

multiplatform-markdown-renderer-coil3/build.gradle.kts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ android {
1111

1212
dependencies {
1313
commonMainApi(projects.multiplatformMarkdownRenderer)
14-
commonMainApi(libs.coil.core)
14+
15+
// TODO reverse once coil3 was released based on compose 1.8.0
16+
commonMainApi(libs.coil.core) {
17+
exclude(group = "org.jetbrains.compose.runtime")
18+
}
1519
commonMainCompileOnly(compose.runtime)
20+
commonMainCompileOnly(compose.runtimeSaveable)
21+
commonMainCompileOnly("org.jetbrains.compose.ui:ui-backhandler:1.8.0-rc01")
1622
}

sample/desktop/src/commonMain/composeResources/files/aboutlibraries.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

sample/shared/src/commonMain/composeResources/files/aboutlibraries.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

sample/web/src/commonMain/composeResources/files/aboutlibraries.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ dependencyResolutionManagement {
2424

2525
versionCatalogs {
2626
create("baseLibs") {
27-
from("com.mikepenz:version-catalog:0.2.9")
27+
from("com.mikepenz:version-catalog:0.3.1")
2828
}
2929
}
3030
}

0 commit comments

Comments
 (0)