diff --git a/CHANGELOG.md b/CHANGELOG.md index afe7f225..37ffe9c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,16 @@ ## 0.4.1 +* `Versions`: + * `Kotlin`: `1.9.22` -> `1.9.23` + * `MicroUtils`: `0.20.38` -> `0.20.42` + * `KSLog`: `1.3.2` -> `1.3.3` + * `UUID`: `0.8.2` -> `0.8.4` + * `Koin`: `3.5.3` -> `3.5.4` + ## 0.4.0 * `Versions`: - * `Kotlin`: `1.9.22` -> `1.9.23` * `Coroutines`: `1.7.3` -> `1.8.0` * `Serialization`: `1.6.2` -> `1.6.3` * `MicroUtils`: `0.20.31` -> `0.20.38` diff --git a/core/src/jsMain/kotlin/urls/UrlParametersNavigationConfigsRepo.kt b/core/src/jsMain/kotlin/urls/UrlParametersNavigationConfigsRepo.kt index 150889bd..9a6d3678 100644 --- a/core/src/jsMain/kotlin/urls/UrlParametersNavigationConfigsRepo.kt +++ b/core/src/jsMain/kotlin/urls/UrlParametersNavigationConfigsRepo.kt @@ -62,7 +62,7 @@ class UrlParametersNavigationConfigsRepo( fun buildUrl( origin: String = document.location ?.origin ?: "" ): String { - val pathname = if (pathSegments.isEmpty()) { + val pathname = if (pathSegments.isNotEmpty()) { pathSegments.joinToString("/", prefix = "/") } else { "" diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 1c6cf1e9..20a7cd52 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,16 +1,16 @@ [versions] -kotlin = "1.9.22" +kotlin = "1.9.23" kotlin-coroutines = "1.8.0" kotlin-serialization = "1.6.3" dokka = "1.9.20" -microutils = "0.20.38" -kslog = "1.3.2" -uuid = "0.8.2" +microutils = "0.20.42" +kslog = "1.3.3" +uuid = "0.8.4" -koin = "3.5.3" -compose = "1.6.0" +koin = "3.5.4" +compose = "1.6.1" dexcount = "4.0.0" junit_version = "4.12"