Skip to content

Commit 17d801f

Browse files
committed
update version and dependencies
1 parent d3fd657 commit 17d801f

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
# 6.1
4+
5+
- Fix crash when single presets were translated only partially for a dialect (#26), by @logan12358
6+
- Aliases and terms of presets in the parent language are now merged into any dialects (#26)
7+
38
# 6.0
49

510
The library is now a Kotlin Multiplatform library. This is a breaking API change. There is also no separate artifact for Android anymore.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ It is currently used in [StreetComplete](https://github.com/streetcomplete/stree
1212

1313
## Usage
1414

15-
Add [de.westnordost:osmfeatures:6.0](https://mvnrepository.com/artifact/de.westnordost/osmfeatures/6.0) as a Maven dependency or download the jar from there.
15+
Add [de.westnordost:osmfeatures:6.1](https://mvnrepository.com/artifact/de.westnordost/osmfeatures/6.1) as a Maven dependency or download the jar from there.
1616

1717
### Get the data
1818

build.gradle.kts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
2-
kotlin("multiplatform") version "1.9.24"
3-
id("com.android.library") version "8.2.0"
2+
kotlin("multiplatform") version "2.0.0"
3+
id("com.android.library") version "8.3.0"
44
id("org.jetbrains.dokka") version "1.9.20"
55

66
id("maven-publish")
@@ -9,7 +9,7 @@ plugins {
99

1010
kotlin {
1111
group = "de.westnordost"
12-
version = "6.0"
12+
version = "6.1"
1313

1414
jvm()
1515
androidTarget {
@@ -30,9 +30,9 @@ kotlin {
3030
commonMain {
3131
dependencies {
3232
// multiplatform file access
33-
api("org.jetbrains.kotlinx:kotlinx-io-core:0.3.4")
33+
api("org.jetbrains.kotlinx:kotlinx-io-core:0.4.0")
3434
// parsing the preset.json
35-
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3")
35+
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.0")
3636
// for stripping diacritics correctly
3737
implementation("com.doist.x:normalize:1.0.5")
3838
}
@@ -45,7 +45,7 @@ kotlin {
4545
implementation("io.ktor:ktor-client-core:2.3.11")
4646
implementation("io.ktor:ktor-client-cio:2.3.11")
4747
// ktor-client is a suspending API, so we need coroutines too
48-
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1")
48+
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0-RC")
4949
}
5050
}
5151
}

0 commit comments

Comments
 (0)