Skip to content

Commit

Permalink
Updated Kotlin to 2.0.20, Compose to 1.7.0-beta01, Essenty to 2.2.0-b…
Browse files Browse the repository at this point in the history
…eta01
  • Loading branch information
arkivanov committed Sep 7, 2024
1 parent 365b434 commit 05eaa60
Show file tree
Hide file tree
Showing 7 changed files with 232 additions and 447 deletions.
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

0 comments on commit 05eaa60

Please sign in to comment.