diff --git a/CHANGELOG.md b/CHANGELOG.md index fdec98c..70391b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +# 5.2 + +- Add support placeholders for preset names (breaking change in [v5.0.0](https://github.com/ideditor/schema-builder/blob/main/CHANGELOG.md#510) of iD presets schema) +- When searching by term, include results that match with the tag value at the bottom of the result list. (iD has the same behavior) + ## 5.1 - add property `boolean isSuggestion` to `Feature` to be able to tell if a feature is a brand feature or not diff --git a/README.md b/README.md index d3c0524..25993b9 100644 --- a/README.md +++ b/README.md @@ -10,9 +10,9 @@ Requires Java 8. ## Installation -Add [`de.westnordost:osmfeatures:5.1`](https://mvnrepository.com/artifact/de.westnordost/osmfeatures/5.1) as a Maven dependency or download the jar from there. +Add [`de.westnordost:osmfeatures:5.2`](https://mvnrepository.com/artifact/de.westnordost/osmfeatures/5.2) as a Maven dependency or download the jar from there. -For Android, use [`de.westnordost:osmfeatures-android:5.1`](https://mvnrepository.com/artifact/de.westnordost/osmfeatures-android/5.1). +For Android, use [`de.westnordost:osmfeatures-android:5.2`](https://mvnrepository.com/artifact/de.westnordost/osmfeatures-android/5.2). ## Usage diff --git a/library-android/build.gradle b/library-android/build.gradle index 57680d3..e5baeb2 100644 --- a/library-android/build.gradle +++ b/library-android/build.gradle @@ -4,7 +4,7 @@ plugins { id 'signing' } -version = "5.1" +version = "5.2" group "de.westnordost" repositories { @@ -15,7 +15,7 @@ repositories { dependencies { //api (project(':library')) { - api ('de.westnordost:osmfeatures:5.1') { + api ('de.westnordost:osmfeatures:5.2') { // it's already included in Android exclude group: 'org.json', module: 'json' } diff --git a/library/build.gradle b/library/build.gradle index 9821944..ac83f34 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -4,7 +4,7 @@ plugins { id 'signing' } -version = "5.1" +version = "5.2" group "de.westnordost" repositories {