Skip to content

Commit cf36d8a

Browse files
committed
update version
1 parent 7197e1a commit cf36d8a

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.md

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

3+
# 5.2
4+
5+
- 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)
6+
- When searching by term, include results that match with the tag value at the bottom of the result list. (iD has the same behavior)
7+
38
## 5.1
49

510
- add property `boolean isSuggestion` to `Feature` to be able to tell if a feature is a brand feature or not

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ Requires Java 8.
1010

1111
## Installation
1212

13-
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.
13+
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.
1414

15-
For Android, use [`de.westnordost:osmfeatures-android:5.1`](https://mvnrepository.com/artifact/de.westnordost/osmfeatures-android/5.1).
15+
For Android, use [`de.westnordost:osmfeatures-android:5.2`](https://mvnrepository.com/artifact/de.westnordost/osmfeatures-android/5.2).
1616

1717
## Usage
1818

library-android/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
id 'signing'
55
}
66

7-
version = "5.1"
7+
version = "5.2"
88
group "de.westnordost"
99

1010
repositories {
@@ -15,7 +15,7 @@ repositories {
1515

1616
dependencies {
1717
//api (project(':library')) {
18-
api ('de.westnordost:osmfeatures:5.1') {
18+
api ('de.westnordost:osmfeatures:5.2') {
1919
// it's already included in Android
2020
exclude group: 'org.json', module: 'json'
2121
}

library/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
id 'signing'
55
}
66

7-
version = "5.1"
7+
version = "5.2"
88
group "de.westnordost"
99

1010
repositories {

0 commit comments

Comments
 (0)