Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.6.0 #165

Merged
merged 2 commits into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Open Swiss Maps SDK

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

## Version 2.5.1
- Update [mapscore to 2.5.1](https://github.com/openmobilemaps/maps-core/releases/tag/2.5.1)
- Update [gps-layer to 2.5.1](https://github.com/openmobilemaps/layer-gps/releases/tag/2.5.1)
Expand Down
8 changes: 4 additions & 4 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@
"repositoryURL": "https://github.com/openmobilemaps/layer-gps.git",
"state": {
"branch": null,
"revision": "fdebc3bd536009f8699e273787b5cd8a70577bec",
"version": "2.5.1"
"revision": "688ac7788709ccb5289f8b5848e04db4918a2b27",
"version": "2.6.0"
}
},
{
"package": "MapCore",
"repositoryURL": "https://github.com/openmobilemaps/maps-core.git",
"state": {
"branch": null,
"revision": "cea64807bd1b2eb184bf03ac5a6d16d18270b063",
"version": "2.5.1"
"revision": "dc937f74b084606d7a4bb31c6195cb3785a5e3eb",
"version": "2.6.0"
}
},
{
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ let package = Package(
),
],
dependencies: [
.package(url: "https://github.com/openmobilemaps/maps-core.git", from: "2.5.1"),
.package(url: "https://github.com/openmobilemaps/layer-gps.git", from: "2.5.1")
.package(url: "https://github.com/openmobilemaps/maps-core.git", from: "2.6.0"),
.package(url: "https://github.com/openmobilemaps/layer-gps.git", from: "2.6.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:2.5.1'
implementation 'ch.admin.geo.openswissmaps:openswissmaps-sdk:2.6.0'
}
```
Make sure you have mavenCentral() listed in your project repositories.
Expand Down
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ dependencies {
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.2"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3"

api "io.openmobilemaps:mapscore:2.5.1"
api "io.openmobilemaps:layer-gps:2.5.1"
api "io.openmobilemaps:mapscore:2.6.0"
api "io.openmobilemaps:layer-gps:2.6.0"
implementation "ch.ubique.android:djinni-support-lib:1.0.7"

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=2.5.1
VERSION_CODE=2050100
VERSION_NAME=2.6.0
VERSION_CODE=2060000

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: "2.5.1"))
.package(url: "https://github.com/geoadmin/lib-open-swiss-maps-sdk.git", .upToNextMajor(from: "2.6.0"))
]
```

Expand Down
Loading