Skip to content

Commit

Permalink
Prepare for release 2.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
maurhofer-ubique committed Oct 2, 2024
1 parent 4a8d9f2 commit a574913
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 13 deletions.
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 2.6.1
- Update [mapscore to 2.6.1](https://github.com/openmobilemaps/maps-core/releases/tag/2.6.1)
- Update [gps-layer to 2.6.1](https://github.com/openmobilemaps/layer-gps/releases/tag/2.6.1)
- Update to AGP 8.6.1 and Kotlin 2.0.20

## 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)
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": "688ac7788709ccb5289f8b5848e04db4918a2b27",
"version": "2.6.0"
"revision": "05bff4bbb103bd1762e3dd4f72b979e151eea2d9",
"version": "2.6.1"
}
},
{
"package": "MapCore",
"repositoryURL": "https://github.com/openmobilemaps/maps-core.git",
"state": {
"branch": null,
"revision": "dc937f74b084606d7a4bb31c6195cb3785a5e3eb",
"version": "2.6.0"
"revision": "929effeff6c122c0e7fa58bf5be5f6b31f5610bf",
"version": "2.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.git", from: "2.6.0"),
.package(url: "https://github.com/openmobilemaps/layer-gps.git", from: "2.6.0")
.package(url: "https://github.com/openmobilemaps/maps-core.git", from: "2.6.1"),
.package(url: "https://github.com/openmobilemaps/layer-gps.git", from: "2.6.1")
],
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.6.0'
implementation 'ch.admin.geo.openswissmaps:openswissmaps-sdk:2.6.1'
}
```
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 @@ -189,8 +189,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.6.0"
api "io.openmobilemaps:layer-gps:2.6.0"
api "io.openmobilemaps:mapscore:2.6.1"
api "io.openmobilemaps:layer-gps:2.6.1"
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.6.0
VERSION_CODE=2060000
VERSION_NAME=2.6.1
VERSION_CODE=2060100

PUBLISH_VARIANT=release

Expand Down
2 changes: 1 addition & 1 deletion android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
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.6.0"))
.package(url: "https://github.com/geoadmin/lib-open-swiss-maps-sdk.git", .upToNextMajor(from: "2.6.1"))
]
```

Expand Down

0 comments on commit a574913

Please sign in to comment.