Skip to content

Commit

Permalink
BUMP: Release 3.6.0 (#7704)
Browse files Browse the repository at this point in the history
* Update projects/mapbox-navigation-ios-internal/mapbox-navigation-ios/CHANGELOG.md
  • Loading branch information
chizhavko authored Dec 23, 2024
1 parent 1f23096 commit c94f8fe
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## v3.6.0

### Packaging

* MapboxNavigationCore now requires [MapboxMaps v11.9.0](https://github.com/mapbox/mapbox-maps-ios/releases/tag/v11.9.0).
* MapboxNavigationCore now requires [MapboxNavigationNative v322.0.0](https://github.com/mapbox/mapbox-navigation-native-ios/releases/tag/322.0.0).

### Map

* Improved support for tapping POI features in the Standard Style.

## v3.6.0-rc.1
Expand Down
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

import PackageDescription

let (navNativeVersion, navNativeChecksum, navNativeRevision) = ("322.0.0-rc.1", "613de47f120adfba829151182d83fb4e401ae327ce6587099ad15f208da28685", "a235dae4e6f747c5f1fac31a2c3a74ae439a9573")
let mapsVersion: Version = "11.9.0-rc.1"
let (navNativeVersion, navNativeChecksum, navNativeRevision) = ("322.0.0", "56a546d71dacac70ae47c623c1947b63c8063cc5c3b7ef28569d03f2aad4e256", "7026ef7877f0485a01110acc30dc996a084d585f")
let mapsVersion: Version = "11.9.0"

let package = Package(
name: "MapboxNavigation",
Expand All @@ -31,7 +31,7 @@ let package = Package(
dependencies: [
.package(url: "https://github.com/mapbox/mapbox-navigation-native-ios.git", exact: Version(stringLiteral: navNativeVersion)),
.package(url: "https://github.com/mapbox/mapbox-maps-ios.git", exact: mapsVersion),
.package(url: "https://github.com/mapbox/turf-swift.git", exact: "4.0.0-beta.1"),
.package(url: "https://github.com/mapbox/turf-swift.git", exact: "4.0.0"),
.package(url: "https://github.com/AliSoftware/OHHTTPStubs", from: "9.1.0"),
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing.git", exact: "1.12.0"),
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.0.0"),
Expand Down
2 changes: 1 addition & 1 deletion Sources/MapboxNavigationCore/Version.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Foundation

extension Bundle {
public static let mapboxNavigationVersion: String = "3.6.0-rc.1"
public static let mapboxNavigationVersion: String = "3.6.0"
public static let mapboxNavigationUXBundleIdentifier: String = "com.mapbox.navigationUX"
}

0 comments on commit c94f8fe

Please sign in to comment.