From e49f35c9dda0b078f226f909b56ac5ab3faf2f89 Mon Sep 17 00:00:00 2001 From: Christoph Maurhofer Date: Tue, 22 Jul 2025 08:16:56 +0200 Subject: [PATCH] Prepare for release 3.4.0 --- CHANGELOG.md | 4 ++++ Package.swift | 2 +- android/README.md | 2 +- android/build.gradle | 2 +- android/gradle.properties | 4 ++-- ios/README.md | 2 +- 6 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 507d790..27d6858 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog for Open Mobile Maps +## Version 3.1.0 +- Update and adjust to [mapscore 3.4.0](https://github.com/openmobilemaps/maps-core/releases/tag/3.4.0) +- Update to AGP 8.11.0 and Kotlin 2.2.0 + ## Version 3.3.1 - Update and adjust to [mapscore 3.3.1](https://github.com/openmobilemaps/maps-core/releases/tag/3.3.1) diff --git a/Package.swift b/Package.swift index d74ff5c..d76b35e 100644 --- a/Package.swift +++ b/Package.swift @@ -23,7 +23,7 @@ let package = Package( ), ], dependencies: [ - .package(url: "https://github.com/openmobilemaps/maps-core", .upToNextMajor(from: "3.3.1")), + .package(url: "https://github.com/openmobilemaps/maps-core", .upToNextMajor(from: "3.4.0")), .package(url: "https://github.com/UbiqueInnovation/ubkit-ios", .upToNextMajor(from: "2.0.0")), ], targets: [ diff --git a/android/README.md b/android/README.md index 77be073..efbb287 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:3.3.1' +implementation 'io.openmobilemaps:layer-gps:3.4.0' ``` Make sure you have mavenCentral() listed in your project repositories. diff --git a/android/build.gradle b/android/build.gradle index fa0a458..f4801cf 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -205,7 +205,7 @@ dependencies { implementation 'androidx.core:core-ktx:1.16.0' implementation 'com.google.android.gms:play-services-location:21.3.0' - api 'io.openmobilemaps:mapscore:3.3.1' + api 'io.openmobilemaps:mapscore:3.4.0' implementation "ch.ubique.android:djinni-support-lib:1.1.1" testImplementation 'junit:junit:4.13.2' diff --git a/android/gradle.properties b/android/gradle.properties index abcf8aa..5fab562 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=3.3.1 -VERSION_CODE=3030100 +VERSION_NAME=3.4.0 +VERSION_CODE=3040000 PUBLISH_VARIANT=release POM_NAME=layer-gps diff --git a/ios/README.md b/ios/README.md index ba9375d..ee20e37 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", from: .upToNextMajor(from: "3.3.1")) + .package(url: "https://github.com/openmobilemaps/layer-gps.git", from: .upToNextMajor(from: "3.4.0")) ] ```