Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated Kotlin to 2.0.20, Compose to 1.7.0-beta01, Essenty to 2.2.0-beta01 #776

Merged
merged 1 commit into from
Sep 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions decompose/api/decompose.klib.api
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,6 @@ final class com.arkivanov.decompose/DefaultComponentContext : com.arkivanov.deco
}

sealed class <#A: out kotlin/Any, #B: out kotlin/Any> com.arkivanov.decompose/Child { // com.arkivanov.decompose/Child|null[0]
constructor <init>() // com.arkivanov.decompose/Child.<init>|<init>(){}[0]

abstract val configuration // com.arkivanov.decompose/Child.configuration|{}configuration[0]
abstract fun <get-configuration>(): #A // com.arkivanov.decompose/Child.configuration.<get-configuration>|<get-configuration>(){}[0]
abstract val instance // com.arkivanov.decompose/Child.instance|{}instance[0]
Expand Down
6 changes: 3 additions & 3 deletions deps.versions.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[versions]

decompose = "3.2.0-alpha06"
kotlin = "2.0.10"
essenty = "2.2.0-alpha04"
kotlin = "2.0.20"
essenty = "2.2.0-beta01"
reaktive = "1.2.3"
junit = "4.13.2"
jetbrainsCompose = "1.7.0-alpha02"
jetbrainsCompose = "1.7.0-beta01"
jetbrainsKotlinWrappers = "1.0.0-pre.608"
jetbrainsKotlinxCoroutines = "1.8.1"
jetbrainsKotlinxSerialization = "1.6.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ class StackAnimationDirectionsTest(
Params(from = listOf("a", "b", "c"), to = listOf("a", "d"), expected = mapOf("d" to ENTER_FRONT, "c" to EXIT_BACK)),
Params(from = listOf("a", "b"), to = listOf("c", "d"), expected = mapOf("d" to ENTER_FRONT, "b" to EXIT_BACK)),
Params(from = listOf("a", "b"), to = listOf("b", "a"), expected = mapOf("a" to ENTER_FRONT, "b" to EXIT_BACK)),
Params(from = listOf("a", "b"), to = listOf("b"), expected = mapOf("b" to ENTER_FRONT)),
Params(from = listOf("a", "b"), to = listOf("c", "b"), expected = mapOf("b" to ENTER_FRONT)),
Params(from = listOf("b", "c"), to = listOf("a", "b", "c"), expected = mapOf("c" to ENTER_FRONT)),
Params(from = listOf("a", "b"), to = listOf("b"), expected = emptyMap()),
Params(from = listOf("a", "b"), to = listOf("c", "b"), expected = emptyMap()),
Params(from = listOf("b", "c"), to = listOf("a", "b", "c"), expected = emptyMap()),
)
}

Expand Down
Loading
Loading