Skip to content

Commit

Permalink
update version and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
westnordost committed Jun 16, 2024
1 parent d3fd657 commit 17d801f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

# 6.1

- Fix crash when single presets were translated only partially for a dialect (#26), by @logan12358
- Aliases and terms of presets in the parent language are now merged into any dialects (#26)

# 6.0

The library is now a Kotlin Multiplatform library. This is a breaking API change. There is also no separate artifact for Android anymore.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ It is currently used in [StreetComplete](https://github.com/streetcomplete/stree

## Usage

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.
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.

### Get the data

Expand Down
12 changes: 6 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
kotlin("multiplatform") version "1.9.24"
id("com.android.library") version "8.2.0"
kotlin("multiplatform") version "2.0.0"
id("com.android.library") version "8.3.0"
id("org.jetbrains.dokka") version "1.9.20"

id("maven-publish")
Expand All @@ -9,7 +9,7 @@ plugins {

kotlin {
group = "de.westnordost"
version = "6.0"
version = "6.1"

jvm()
androidTarget {
Expand All @@ -30,9 +30,9 @@ kotlin {
commonMain {
dependencies {
// multiplatform file access
api("org.jetbrains.kotlinx:kotlinx-io-core:0.3.4")
api("org.jetbrains.kotlinx:kotlinx-io-core:0.4.0")
// parsing the preset.json
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.0")
// for stripping diacritics correctly
implementation("com.doist.x:normalize:1.0.5")
}
Expand All @@ -45,7 +45,7 @@ kotlin {
implementation("io.ktor:ktor-client-core:2.3.11")
implementation("io.ktor:ktor-client-cio:2.3.11")
// ktor-client is a suspending API, so we need coroutines too
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0-RC")
}
}
}
Expand Down

0 comments on commit 17d801f

Please sign in to comment.