Skip to content

Commit 2352bef

Browse files
Merge pull request #197 from geoadmin/release/3.7.0
Prepare for release 3.7.0, update to AGP 8.13.1
2 parents d056da1 + ccbc7b5 commit 2352bef

File tree

6 files changed

+14
-9
lines changed

6 files changed

+14
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Open Swiss Maps SDK
22

3+
## Version 3.7.0
4+
- Update [mapscore to 3.7.0](https://github.com/openmobilemaps/maps-core/releases/tag/3.7.0)
5+
- Update [gps-layer to 3.7.0](https://github.com/openmobilemaps/layer-gps/releases/tag/3.7.0)
6+
- Update to AGP 8.13.1
7+
38
## Version 3.6.1
49
- Update [mapscore to 3.6.1](https://github.com/openmobilemaps/maps-core/releases/tag/3.6.1)
510

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ let package = Package(
2222
),
2323
],
2424
dependencies: [
25-
.package(url: "https://github.com/openmobilemaps/maps-core", from: "3.6.1"),
26-
.package(url: "https://github.com/openmobilemaps/layer-gps.git", from: "3.6.0")
25+
.package(url: "https://github.com/openmobilemaps/maps-core", from: "3.7.0"),
26+
.package(url: "https://github.com/openmobilemaps/layer-gps.git", from: "3.7.0")
2727
],
2828
targets: [
2929
.target(

android/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
To add the OpenSwissMaps SDK to your Android project, add the following line to your build.gradle
4242
```
4343
dependencies {
44-
implementation 'ch.admin.geo.openswissmaps:openswissmaps-sdk:3.6.1'
44+
implementation 'ch.admin.geo.openswissmaps:openswissmaps-sdk:3.7.0'
4545
}
4646
```
4747
Make sure you have mavenCentral() listed in your project repositories.

android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ buildscript {
1717
}
1818

1919
ext {
20-
agp_version = "8.11.0"
20+
agp_version = "8.13.1"
2121
kotlin_version = "2.2.0"
2222

2323
ubiqueUrl = System.getenv('UB_ARTIFACTORY_URL_ANDROID') ?: readPropertyWithDefault('ubiqueMavenUrl', '')
@@ -187,8 +187,8 @@ dependencies {
187187
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.9.2"
188188
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2"
189189

190-
api "io.openmobilemaps:mapscore:3.6.1"
191-
api "io.openmobilemaps:layer-gps:3.6.0"
190+
api "io.openmobilemaps:mapscore:3.7.0"
191+
api "io.openmobilemaps:layer-gps:3.7.0"
192192
implementation "ch.ubique.android:djinni-support-lib:1.1.1"
193193

194194
testImplementation 'junit:junit:4.13.2'

android/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ android.enableR8.fullMode=false
2929
GROUP=ch.admin.geo.openswissmaps
3030
POM_ARTIFACT_ID=openswissmaps-sdk
3131

32-
VERSION_NAME=3.6.1
33-
VERSION_CODE=3060100
32+
VERSION_NAME=3.7.0
33+
VERSION_CODE=3070000
3434

3535
PUBLISH_VARIANT=release
3636

ios/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Once you have your Swift package set up, adding Open Mobile Maps as a dependency
4848

4949
```swift
5050
dependencies: [
51-
.package(url: "https://github.com/geoadmin/lib-open-swiss-maps-sdk.git", .upToNextMajor(from: "3.6.1"))
51+
.package(url: "https://github.com/geoadmin/lib-open-swiss-maps-sdk.git", .upToNextMajor(from: "3.7.0"))
5252
]
5353
```
5454

0 commit comments

Comments
 (0)