Skip to content

Commit

Permalink
update versions and make fix in buildUrl of UrlParametersNavigationCo…
Browse files Browse the repository at this point in the history
…nfigsRepo
  • Loading branch information
InsanusMokrassar committed Apr 9, 2024
1 parent ec0b768 commit 6a69a10
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class UrlParametersNavigationConfigsRepo<T : Any>(
fun buildUrl(
origin: String = document.location ?.origin ?: ""
): String {
val pathname = if (pathSegments.isEmpty()) {
val pathname = if (pathSegments.isNotEmpty()) {
pathSegments.joinToString("/", prefix = "/")
} else {
""
Expand Down
12 changes: 6 additions & 6 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 6a69a10

Please sign in to comment.