From 428c600484d534b9c9ac6a6d71a3283d1c7e0202 Mon Sep 17 00:00:00 2001 From: Maarten Zonneveld Date: Fri, 20 Dec 2024 11:09:39 +0100 Subject: [PATCH 1/2] Update maplibre-gl-native-distribution to 6.9 --- Package.resolved | 4 ++-- Package.swift | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Package.resolved b/Package.resolved index 938b4b21..471aa186 100644 --- a/Package.resolved +++ b/Package.resolved @@ -14,8 +14,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/maplibre/maplibre-gl-native-distribution.git", "state" : { - "revision" : "3df876f8f2c6c591b0f66a29b3e216020afc885c", - "version" : "6.0.0" + "revision" : "93cb32c95b48f62edb27c75792038849cdfdaa35", + "version" : "6.9.0" } }, { diff --git a/Package.swift b/Package.swift index 8cc20bf3..93510f9a 100644 --- a/Package.swift +++ b/Package.swift @@ -17,7 +17,7 @@ let package = Package( dependencies: [ .package(url: "https://github.com/flitsmeister/mapbox-directions-swift", exact: "0.23.3"), .package(url: "https://github.com/mapbox/turf-swift.git", from: "2.8.0"), - .package(url: "https://github.com/maplibre/maplibre-gl-native-distribution.git", from: "6.0.0"), + .package(url: "https://github.com/maplibre/maplibre-gl-native-distribution.git", from: "6.9.0"), .package(url: "https://github.com/ceeK/Solar.git", exact: "3.0.1"), .package(url: "https://github.com/nicklockwood/SwiftFormat.git", from: "0.53.6") ], From 1b058f5c220789b0d8ca6dc6fa58f8ba565e9dad Mon Sep 17 00:00:00 2001 From: Maarten Zonneveld Date: Fri, 20 Dec 2024 11:33:27 +0100 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ffd3b630..702638fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Changes to the Mapbox Navigation SDK for iOS ## Unreleased +* Updated MapLibre Native dependency to ios-v6.9.0 (https://github.com/maplibre/maplibre-native/releases/tag/ios-v6.9.0). * Start & Stop Navigation in existing Map - Removed: `NavigationViewController(for route: Route, dayStyle: Style, routeController: RouteController? = nil, locationManager: NavigationLocationManager? = nil, voiceController: RouteVoiceController? = nil)` use `NavigationViewController(dayStyleURL: URL, nightStyleURL: URL? = nil,directions: Directions = .shared, voiceController: RouteVoiceController = RouteVoiceController())` followed by `startNavigation(with route: Route, animated: Bool)` instead. - To simulate a route, pass a `SimulatedLocationManager` to `startNavigation()` function: