diff --git a/.github/workflows/sonatype.yml b/.github/workflows/sonatype.yml index 419ddfd..0f448f8 100644 --- a/.github/workflows/sonatype.yml +++ b/.github/workflows/sonatype.yml @@ -3,7 +3,7 @@ name: Upload AAR to Sonatype Nexus on: push: tags: - - '[0-9]+.[0-9]+.[0-9]+' + - '[0-9]+.[0-9]+.[0-9]+**' jobs: build: diff --git a/CHANGELOG.md b/CHANGELOG.md index 908624b..90700a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog for Open Mobile Maps +## Version 2.1.0 (26.03.2024) +- update and adjust to [mapscore 2.1.0](https://github.com/openmobilemaps/maps-core/releases/tag/2.1.0) + ## Version 2.0.5 (08.04.2024) - update and adjust to [mapscore 2.0.5](https://github.com/openmobilemaps/maps-core/releases/tag/2.0.5) diff --git a/Package.resolved b/Package.resolved index 36694d4..f02fb13 100644 --- a/Package.resolved +++ b/Package.resolved @@ -15,8 +15,8 @@ "repositoryURL": "https://github.com/openmobilemaps/maps-core.git", "state": { "branch": null, - "revision": "3533a1da35355c4a72034454fab8816f89ec8f0b", - "version": "2.0.5" + "revision": "080fc23ae4738e008e8a6d9917634fe2b1440fbe", + "version": "2.1.0" } }, { diff --git a/android/README.md b/android/README.md index 77efe16..2285a9b 100644 --- a/android/README.md +++ b/android/README.md @@ -36,7 +36,7 @@ This module is designed to be used together with Open Mobile Maps maps-core. To add the OpenSwissMaps SDK to your Android project, add the following line to your build.gradle ```groovy -implementation 'io.openmobilemaps:layer-gps:2.0.5' +implementation 'io.openmobilemaps:layer-gps:2.1.0' ``` Make sure you have mavenCentral() listed in your project repositories. diff --git a/android/build.gradle b/android/build.gradle index 63e55cc..c0f538e 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -195,7 +195,7 @@ dependencies { implementation 'androidx.core:core-ktx:1.12.0' implementation 'com.google.android.gms:play-services-location:21.1.0' - api 'io.openmobilemaps:mapscore:2.0.5' + api 'io.openmobilemaps:mapscore:2.1.0' implementation "ch.ubique.android:djinni-support-lib:1.0.7" testImplementation 'junit:junit:4.13.2' diff --git a/android/gradle.properties b/android/gradle.properties index 57fe5d2..9dff757 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -31,8 +31,8 @@ SNAPSHOT_REPOSITORY_URL=https://oss.sonatype.org/content/repositories/snapshots/ GROUP=io.openmobilemaps POM_ARTIFACT_ID=layer-gps -VERSION_NAME=2.0.5 -VERSION_CODE=2000500 +VERSION_NAME=2.1.0 +VERSION_CODE=2010000 PUBLISH_VARIANT=release POM_NAME=layer-gps diff --git a/ios/README.md b/ios/README.md index d323175..ee099f3 100644 --- a/ios/README.md +++ b/ios/README.md @@ -37,7 +37,7 @@ Once you have your Swift package set up, adding Open Mobile Maps as a dependency ```swift dependencies: [ - .package(url: "https://github.com/openmobilemaps/layer-gps.git", .upToNextMajor(from: "2.0.5")) + .package(url: "https://github.com/openmobilemaps/layer-gps.git", .upToNextMajor(from: "2.1.0")) ] ```