Skip to content

Commit

Permalink
prepare release 2.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
stmitt committed Oct 17, 2024
1 parent 05bff4b commit 1cc99b4
Show file tree
Hide file tree
Showing 16 changed files with 13 additions and 62 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog for Open Mobile Maps

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

## Version 2.6.1
- Update and adjust to [mapscore 2.6.1](/~https://github.com/openmobilemaps/maps-core/releases/tag/2.6.1)
- Update to AGP 8.6.1 and Kotlin 2.0.20
Expand Down
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"repositoryURL": "/~https://github.com/openmobilemaps/maps-core.git",
"state": {
"branch": null,
"revision": "929effeff6c122c0e7fa58bf5be5f6b31f5610bf",
"version": "2.6.1"
"revision": "32258f1c173fe9f60d80863e51a0400967e40149",
"version": "2.6.2"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ let package = Package(
),
],
dependencies: [
.package(url: "/~https://github.com/openmobilemaps/maps-core.git", from: "2.6.1"),
.package(url: "/~https://github.com/openmobilemaps/maps-core.git", from: "2.6.2"),
.package(url: "/~https://github.com/UbiqueInnovation/ubkit-ios", from: "1.8.1"),
],
targets: [
Expand Down
2 changes: 1 addition & 1 deletion android/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ This module is designed to be used together with Open Mobile Maps maps-core.
To add the OpenSwissMaps SDK to your Android project, add the following line to your build.gradle

```groovy
implementation 'io.openmobilemaps:layer-gps:2.6.1'
implementation 'io.openmobilemaps:layer-gps:2.6.2'
```

Make sure you have mavenCentral() listed in your project repositories.
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ dependencies {
implementation 'androidx.core:core-ktx:1.12.0'
implementation 'com.google.android.gms:play-services-location:21.1.0'

api 'io.openmobilemaps:mapscore:2.6.1'
api 'io.openmobilemaps:mapscore:2.6.2'
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 @@ -31,8 +31,8 @@ SNAPSHOT_REPOSITORY_URL=https://oss.sonatype.org/content/repositories/snapshots/

GROUP=io.openmobilemaps
POM_ARTIFACT_ID=layer-gps
VERSION_NAME=2.6.1
VERSION_CODE=2060100
VERSION_NAME=2.6.2
VERSION_CODE=2060200
PUBLISH_VARIANT=release

POM_NAME=layer-gps
Expand Down
4 changes: 2 additions & 2 deletions ios/MCGpsLayer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ public class MCGpsLayer: NSObject {

public extension MCGpsStyleInfoInterface {
static var defaultStyle: MCGpsStyleInfoInterface {
guard let pointImage = UIImage(named: "ic_gps_point", in: Bundle.module, compatibleWith: nil)!.cgImage,
guard let pointImage = UIImage(resource: .icGpsPoint).cgImage,
let pointTexture = try? TextureHolder(pointImage),
let headingImage = UIImage(named: "ic_gps_direction", in: Bundle.module, compatibleWith: nil)!.cgImage,
let headingImage = UIImage(resource: .icGpsDirection).cgImage,
let headingTexture = try? TextureHolder(headingImage) else {
fatalError("gps style assets not found")
}
Expand Down
2 changes: 1 addition & 1 deletion ios/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Once you have your Swift package set up, adding Open Mobile Maps as a dependency

```swift
dependencies: [
.package(url: "/~https://github.com/openmobilemaps/layer-gps.git", .upToNextMajor(from: "2.6.1"))
.package(url: "/~https://github.com/openmobilemaps/layer-gps.git", .upToNextMajor(from: "2.6.2"))
]
```

Expand Down

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
26 changes: 0 additions & 26 deletions ios/Resources/Assets.xcassets/ic-gps-point.imageset/Contents.json

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 1cc99b4

Please sign in to comment.