Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Open Swiss Maps SDK

## Version 3.7.0
- Update [mapscore to 3.7.0](https://github.com/openmobilemaps/maps-core/releases/tag/3.7.0)
- Update [gps-layer to 3.7.0](https://github.com/openmobilemaps/layer-gps/releases/tag/3.7.0)
- Update to AGP 8.13.1

## Version 3.6.1
- Update [mapscore to 3.6.1](https://github.com/openmobilemaps/maps-core/releases/tag/3.6.1)

Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ let package = Package(
),
],
dependencies: [
.package(url: "https://github.com/openmobilemaps/maps-core", from: "3.6.1"),
.package(url: "https://github.com/openmobilemaps/layer-gps.git", from: "3.6.0")
.package(url: "https://github.com/openmobilemaps/maps-core", from: "3.7.0"),
.package(url: "https://github.com/openmobilemaps/layer-gps.git", from: "3.7.0")
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion android/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
To add the OpenSwissMaps SDK to your Android project, add the following line to your build.gradle
```
dependencies {
implementation 'ch.admin.geo.openswissmaps:openswissmaps-sdk:3.6.1'
implementation 'ch.admin.geo.openswissmaps:openswissmaps-sdk:3.7.0'
}
```
Make sure you have mavenCentral() listed in your project repositories.
Expand Down
6 changes: 3 additions & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ buildscript {
}

ext {
agp_version = "8.11.0"
agp_version = "8.13.1"
kotlin_version = "2.2.0"

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

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

testImplementation 'junit:junit:4.13.2'
Expand Down
4 changes: 2 additions & 2 deletions android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ android.enableR8.fullMode=false
GROUP=ch.admin.geo.openswissmaps
POM_ARTIFACT_ID=openswissmaps-sdk

VERSION_NAME=3.6.1
VERSION_CODE=3060100
VERSION_NAME=3.7.0
VERSION_CODE=3070000

PUBLISH_VARIANT=release

Expand Down
2 changes: 1 addition & 1 deletion ios/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Once you have your Swift package set up, adding Open Mobile Maps as a dependency

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

Expand Down