Skip to content

Commit

Permalink
Prepare release 2.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
maurhofer-ubique committed Apr 30, 2024
1 parent 0e7f44c commit fe76de1
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
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.0.7 (30.04.2024)
- update [mapscore to 2.0.7](https://github.com/openmobilemaps/maps-core/releases/tag/2.0.7)
- update [gps-layer to 2.0.7](https://github.com/openmobilemaps/layer-gps/releases/tag/2.0.7)

## Version 2.0.6 (08.04.2024)
- update [mapscore to 2.0.6](https://github.com/openmobilemaps/maps-core/releases/tag/2.0.6)
- update [gps-layer to 2.0.6](https://github.com/openmobilemaps/layer-gps/releases/tag/2.0.6)
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.0.6"),
.package(url: "https://github.com/openmobilemaps/layer-gps.git", from: "2.0.6")
.package(url: "https://github.com/openmobilemaps/maps-core.git", from: "2.0.7"),
.package(url: "https://github.com/openmobilemaps/layer-gps.git", from: "2.0.7")
],
targets: [
.target(
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.0.6"
api "io.openmobilemaps:layer-gps:2.0.6"
api "io.openmobilemaps:mapscore:2.0.7"
api "io.openmobilemaps:layer-gps:2.0.7"
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.0.6
VERSION_CODE=2000600
VERSION_NAME=2.0.7
VERSION_CODE=2000700

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

Expand Down
2 changes: 1 addition & 1 deletion shared/src/OpenSwissMapsSharedModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
#include "OpenSwissMapsSharedModule.h"

std::string OpenSwissMapsSharedModule::version() {
return "2.0.0";
return "2.0.7";
}

0 comments on commit fe76de1

Please sign in to comment.