From cb9c127bc419abb47c10047c7c4c9cab6a93c9f5 Mon Sep 17 00:00:00 2001 From: Stefan Mitterrutzner Date: Thu, 29 Aug 2024 09:22:52 +0200 Subject: [PATCH 1/2] make gps style info public --- shared/{src/gps => public}/GpsStyleInfo.h | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename shared/{src/gps => public}/GpsStyleInfo.h (100%) diff --git a/shared/src/gps/GpsStyleInfo.h b/shared/public/GpsStyleInfo.h similarity index 100% rename from shared/src/gps/GpsStyleInfo.h rename to shared/public/GpsStyleInfo.h From 1b26e4b50e9dad9c5ca5ae4f020645365a00542f Mon Sep 17 00:00:00 2001 From: Christoph Maurhofer Date: Tue, 17 Sep 2024 12:10:15 +0200 Subject: [PATCH 2/2] Prepare for release 2.5.0 --- CHANGELOG.md | 3 +++ Package.resolved | 4 ++-- Package.swift | 2 +- android/README.md | 2 +- android/build.gradle | 2 +- android/gradle.properties | 4 ++-- ios/README.md | 2 +- 7 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ca5769..38cbac7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog for Open Mobile Maps +## Version 2.5.0 +- Update and adjust to [mapscore 2.5.0](https://github.com/openmobilemaps/maps-core/releases/tag/2.5.0) + ## Version 2.4.0 - Update and adjust to [mapscore 2.4.0](https://github.com/openmobilemaps/maps-core/releases/tag/2.4.0) - Update AGP and Kotlin versions for Android diff --git a/Package.resolved b/Package.resolved index 9f02966..f1ff817 100644 --- a/Package.resolved +++ b/Package.resolved @@ -15,8 +15,8 @@ "repositoryURL": "https://github.com/openmobilemaps/maps-core.git", "state": { "branch": null, - "revision": "b2e8a8d3aaacc53b2ebcaaaa84afe4d0dfde5de2", - "version": "2.4.0" + "revision": "fb5cbdcf42b01964a795ed68f1f9e8c2eb9675f9", + "version": "2.5.0" } }, { diff --git a/Package.swift b/Package.swift index 0575783..259b348 100644 --- a/Package.swift +++ b/Package.swift @@ -23,7 +23,7 @@ let package = Package( ), ], dependencies: [ - .package(url: "https://github.com/openmobilemaps/maps-core.git", from: "2.4.0"), + .package(url: "https://github.com/openmobilemaps/maps-core.git", from: "2.5.0"), .package(url: "https://github.com/UbiqueInnovation/ubkit-ios", from: "1.8.1"), ], targets: [ diff --git a/android/README.md b/android/README.md index dec7422..7924471 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.4.0' +implementation 'io.openmobilemaps:layer-gps:2.5.0' ``` Make sure you have mavenCentral() listed in your project repositories. diff --git a/android/build.gradle b/android/build.gradle index fa2ed79..c53096b 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.4.0' + api 'io.openmobilemaps:mapscore:2.5.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 3551e92..3db91e6 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.4.0 -VERSION_CODE=2040000 +VERSION_NAME=2.5.0 +VERSION_CODE=2050000 PUBLISH_VARIANT=release POM_NAME=layer-gps diff --git a/ios/README.md b/ios/README.md index 61bc1f9..f78ed12 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.4.0")) + .package(url: "https://github.com/openmobilemaps/layer-gps.git", .upToNextMajor(from: "2.5.0")) ] ```