Skip to content

Commit 40b1718

Browse files
authored
v2.0.0-beta.21 (#3221)
* v2.0.0-beta.21 release changes * vk-release-v2.0.0-beta.21: cartfile updated * vk-release-v2.0.0-beta.21: cartfile updated
1 parent 9925bee commit 40b1718

File tree

22 files changed

+44
-43
lines changed

22 files changed

+44
-43
lines changed

Bench/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundleShortVersionString</key>
1818
<string>2.0.0</string>
1919
<key>CFBundleVersion</key>
20-
<string>64</string>
20+
<string>65</string>
2121
<key>LSRequiresIPhoneOS</key>
2222
<true/>
2323
<key>MBXAccessToken</key>

BenchTests/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
<key>CFBundleShortVersionString</key>
1818
<string>2.0.0</string>
1919
<key>CFBundleVersion</key>
20-
<string>64</string>
20+
<string>65</string>
2121
</dict>
2222
</plist>

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@
137137
* Renamed `RouteOptions.without(waypoint:)` to `RouteOptions.without(_:)`. ([#3192](https://github.com/mapbox/mapbox-navigation-ios/pull/3192))
138138
* Added optional `NavigationEventsManager.userInfo` property that can be sent with all navigation events. The new optional property contains application metadata, such as the application name and version, that is included in each event to help Mapbox triage and diagnose unexpected behavior. ([#3007](https://github.com/mapbox/mapbox-navigation-ios/pull/3007)).
139139
* Fixed an issue when `GenericRouteShield` images would ignore changing it's foreground color in favor of cached image. ([#3217](https://github.com/mapbox/mapbox-navigation-ios/pull/3217))
140+
* Fixed an issue when route line was sometimes invisilbe after starting active guidance session. ([#3205](https://github.com/mapbox/mapbox-navigation-ios/pull/3205))
140141

141142
## v1.4.1
142143

Cartfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
binary "https://api.mapbox.com/downloads/v2/carthage/mapbox-common/MapboxCommon.json" ~> 14.0.0
1+
binary "https://api.mapbox.com/downloads/v2/carthage/mapbox-common/MapboxCommon.json" "16.0.0"
22
binary "https://api.mapbox.com/downloads/v2/carthage/mobile-navigation-native/MapboxNavigationNative.xcframework.json" ~> 60.0
33
github "mapbox/mapbox-directions-swift" "v2.0.0-beta.7"
44
github "mapbox/turf-swift" "v2.0.0-beta.1"

Cartfile.resolved

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
binary "https://api.mapbox.com/downloads/v2/carthage/mapbox-common/MapboxCommon.json" "14.2.0"
1+
binary "https://api.mapbox.com/downloads/v2/carthage/mapbox-common/MapboxCommon.json" "16.0.0"
22
binary "https://api.mapbox.com/downloads/v2/carthage/mobile-navigation-native/MapboxNavigationNative.xcframework.json" "60.0.0"
33
github "Quick/Nimble" "v9.2.0"
44
github "Quick/Quick" "v3.1.2"

Example/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundleShortVersionString</key>
1818
<string>2.0.0</string>
1919
<key>CFBundleVersion</key>
20-
<string>64</string>
20+
<string>65</string>
2121
<key>LSApplicationCategoryType</key>
2222
<string></string>
2323
<key>LSRequiresIPhoneOS</key>

MapboxCoreNavigation.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Pod::Spec.new do |s|
33
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
44

55
s.name = "MapboxCoreNavigation"
6-
s.version = '2.0.0-beta.20'
6+
s.version = '2.0.0-beta.21'
77
s.summary = "Core components for turn-by-turn navigation on iOS."
88

99
s.description = <<-DESC

MapboxNavigation-Documentation.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Pod::Spec.new do |s|
33
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
44

55
s.name = "MapboxNavigation-Documentation"
6-
s.version = '2.0.0-beta.20'
6+
s.version = '2.0.0-beta.21'
77
s.summary = "Complete turn-by-turn navigation interface for iOS."
88

99
s.description = <<-DESC

MapboxNavigation-SPM.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -938,7 +938,7 @@
938938
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
939939
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
940940
COPY_PHASE_STRIP = NO;
941-
CURRENT_PROJECT_VERSION = 64;
941+
CURRENT_PROJECT_VERSION = 65;
942942
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
943943
ENABLE_STRICT_OBJC_MSGSEND = YES;
944944
ENABLE_TESTABILITY = YES;
@@ -1003,7 +1003,7 @@
10031003
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
10041004
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
10051005
COPY_PHASE_STRIP = NO;
1006-
CURRENT_PROJECT_VERSION = 64;
1006+
CURRENT_PROJECT_VERSION = 65;
10071007
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
10081008
ENABLE_NS_ASSERTIONS = NO;
10091009
ENABLE_STRICT_OBJC_MSGSEND = YES;

MapboxNavigation.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Pod::Spec.new do |s|
33
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
44

55
s.name = "MapboxNavigation"
6-
s.version = '2.0.0-beta.20'
6+
s.version = '2.0.0-beta.21'
77
s.summary = "Complete turn-by-turn navigation interface for iOS."
88

99
s.description = <<-DESC

MapboxNavigation.xcodeproj/project.pbxproj

+14-14
Original file line numberDiff line numberDiff line change
@@ -2706,7 +2706,7 @@
27062706
DEFINES_MODULE = YES;
27072707
DEVELOPMENT_TEAM = GJZR2MEM28;
27082708
DYLIB_COMPATIBILITY_VERSION = 1;
2709-
DYLIB_CURRENT_VERSION = 64;
2709+
DYLIB_CURRENT_VERSION = 65;
27102710
DYLIB_INSTALL_NAME_BASE = "@rpath";
27112711
FRAMEWORK_SEARCH_PATHS = (
27122712
"$(inherited)",
@@ -2733,7 +2733,7 @@
27332733
DEFINES_MODULE = YES;
27342734
DEVELOPMENT_TEAM = GJZR2MEM28;
27352735
DYLIB_COMPATIBILITY_VERSION = 1;
2736-
DYLIB_CURRENT_VERSION = 64;
2736+
DYLIB_CURRENT_VERSION = 65;
27372737
DYLIB_INSTALL_NAME_BASE = "@rpath";
27382738
FRAMEWORK_SEARCH_PATHS = (
27392739
"$(inherited)",
@@ -2810,12 +2810,12 @@
28102810
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
28112811
CODE_SIGN_IDENTITY = "";
28122812
CODE_SIGN_STYLE = Automatic;
2813-
CURRENT_PROJECT_VERSION = 64;
2813+
CURRENT_PROJECT_VERSION = 65;
28142814
DEBUG_INFORMATION_FORMAT = dwarf;
28152815
DEFINES_MODULE = YES;
28162816
DEVELOPMENT_TEAM = GJZR2MEM28;
28172817
DYLIB_COMPATIBILITY_VERSION = 1;
2818-
DYLIB_CURRENT_VERSION = 64;
2818+
DYLIB_CURRENT_VERSION = 65;
28192819
DYLIB_INSTALL_NAME_BASE = "@rpath";
28202820
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
28212821
GCC_C_LANGUAGE_STANDARD = gnu11;
@@ -2847,11 +2847,11 @@
28472847
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
28482848
CODE_SIGN_IDENTITY = "";
28492849
CODE_SIGN_STYLE = Automatic;
2850-
CURRENT_PROJECT_VERSION = 64;
2850+
CURRENT_PROJECT_VERSION = 65;
28512851
DEFINES_MODULE = YES;
28522852
DEVELOPMENT_TEAM = GJZR2MEM28;
28532853
DYLIB_COMPATIBILITY_VERSION = 1;
2854-
DYLIB_CURRENT_VERSION = 64;
2854+
DYLIB_CURRENT_VERSION = 65;
28552855
DYLIB_INSTALL_NAME_BASE = "@rpath";
28562856
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
28572857
GCC_C_LANGUAGE_STANDARD = gnu11;
@@ -2905,7 +2905,7 @@
29052905
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
29062906
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
29072907
COPY_PHASE_STRIP = NO;
2908-
CURRENT_PROJECT_VERSION = 64;
2908+
CURRENT_PROJECT_VERSION = 65;
29092909
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
29102910
ENABLE_STRICT_OBJC_MSGSEND = YES;
29112911
ENABLE_TESTABILITY = YES;
@@ -2970,7 +2970,7 @@
29702970
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
29712971
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
29722972
COPY_PHASE_STRIP = NO;
2973-
CURRENT_PROJECT_VERSION = 64;
2973+
CURRENT_PROJECT_VERSION = 65;
29742974
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
29752975
ENABLE_NS_ASSERTIONS = NO;
29762976
ENABLE_STRICT_OBJC_MSGSEND = YES;
@@ -3004,7 +3004,7 @@
30043004
DEFINES_MODULE = YES;
30053005
DEVELOPMENT_TEAM = GJZR2MEM28;
30063006
DYLIB_COMPATIBILITY_VERSION = 1;
3007-
DYLIB_CURRENT_VERSION = 64;
3007+
DYLIB_CURRENT_VERSION = 65;
30083008
DYLIB_INSTALL_NAME_BASE = "@rpath";
30093009
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
30103010
INFOPLIST_FILE = Sources/MapboxCoreNavigation/Info.plist;
@@ -3030,7 +3030,7 @@
30303030
DEFINES_MODULE = YES;
30313031
DEVELOPMENT_TEAM = GJZR2MEM28;
30323032
DYLIB_COMPATIBILITY_VERSION = 1;
3033-
DYLIB_CURRENT_VERSION = 64;
3033+
DYLIB_CURRENT_VERSION = 65;
30343034
DYLIB_INSTALL_NAME_BASE = "@rpath";
30353035
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
30363036
INFOPLIST_FILE = Sources/MapboxCoreNavigation/Info.plist;
@@ -3096,11 +3096,11 @@
30963096
CLANG_ENABLE_OBJC_WEAK = YES;
30973097
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
30983098
CODE_SIGN_STYLE = Automatic;
3099-
CURRENT_PROJECT_VERSION = 64;
3099+
CURRENT_PROJECT_VERSION = 65;
31003100
DEBUG_INFORMATION_FORMAT = dwarf;
31013101
DEFINES_MODULE = YES;
31023102
DYLIB_COMPATIBILITY_VERSION = 1;
3103-
DYLIB_CURRENT_VERSION = 64;
3103+
DYLIB_CURRENT_VERSION = 65;
31043104
DYLIB_INSTALL_NAME_BASE = "@rpath";
31053105
GCC_C_LANGUAGE_STANDARD = gnu11;
31063106
INFOPLIST_FILE = Sources/CarPlayTestHelper/Info.plist;
@@ -3129,10 +3129,10 @@
31293129
CLANG_ENABLE_OBJC_WEAK = YES;
31303130
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
31313131
CODE_SIGN_STYLE = Automatic;
3132-
CURRENT_PROJECT_VERSION = 64;
3132+
CURRENT_PROJECT_VERSION = 65;
31333133
DEFINES_MODULE = YES;
31343134
DYLIB_COMPATIBILITY_VERSION = 1;
3135-
DYLIB_CURRENT_VERSION = 64;
3135+
DYLIB_CURRENT_VERSION = 65;
31363136
DYLIB_INSTALL_NAME_BASE = "@rpath";
31373137
GCC_C_LANGUAGE_STANDARD = gnu11;
31383138
INFOPLIST_FILE = Sources/CarPlayTestHelper/Info.plist;

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ To install the MapboxNavigation framework in an application using [Swift Package
5151
To install the MapboxNavigation framework in another package rather than an application, run `swift package init` to create a Package.swift, then add the following dependency:
5252

5353
```swift
54-
.package(name: "MapboxNavigation", url: "https://github.com/mapbox/mapbox-navigation-ios.git", .exact("2.0.0-beta.20"))
54+
.package(name: "MapboxNavigation", url: "https://github.com/mapbox/mapbox-navigation-ios.git", .exact("2.0.0-beta.21"))
5555
```
5656

5757
### Using CocoaPods
@@ -68,8 +68,8 @@ To install the MapboxNavigation framework using [CocoaPods](https://cocoapods.or
6868

6969
1. Create a [Podfile](https://guides.cocoapods.org/syntax/podfile.html) with the following specification:
7070
```ruby
71-
pod 'MapboxCoreNavigation', :git => 'https://github.com/mapbox/mapbox-navigation-ios.git', :tag => 'v2.0.0-beta.20'
72-
pod 'MapboxNavigation', :git => 'https://github.com/mapbox/mapbox-navigation-ios.git', :tag => 'v2.0.0-beta.20'
71+
pod 'MapboxCoreNavigation', :git => 'https://github.com/mapbox/mapbox-navigation-ios.git', :tag => 'v2.0.0-beta.21'
72+
pod 'MapboxNavigation', :git => 'https://github.com/mapbox/mapbox-navigation-ios.git', :tag => 'v2.0.0-beta.21'
7373
```
7474

7575
1. Run `pod repo update && pod install` and open the resulting Xcode workspace.

Sources/CarPlayTestHelper/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
<key>CFBundleShortVersionString</key>
1818
<string>2.0.0</string>
1919
<key>CFBundleVersion</key>
20-
<string>64</string>
20+
<string>65</string>
2121
</dict>
2222
</plist>

Sources/MapboxCoreNavigation/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundleShortVersionString</key>
1818
<string>2.0.0</string>
1919
<key>CFBundleVersion</key>
20-
<string>64</string>
20+
<string>65</string>
2121
<key>NSPrincipalClass</key>
2222
<string></string>
2323
</dict>

Sources/MapboxCoreNavigation/MBXInfo.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundleShortVersionString</key>
1818
<string>2.0.0</string>
1919
<key>CFBundleVersion</key>
20-
<string>64</string>
20+
<string>65</string>
2121
<key>NSPrincipalClass</key>
2222
<string></string>
2323
</dict>

Sources/MapboxNavigation/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundleShortVersionString</key>
1818
<string>2.0.0</string>
1919
<key>CFBundleVersion</key>
20-
<string>64</string>
20+
<string>65</string>
2121
<key>NSPrincipalClass</key>
2222
<string></string>
2323
</dict>

Sources/MapboxNavigation/MBXInfo.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundleShortVersionString</key>
1818
<string>2.0.0</string>
1919
<key>CFBundleVersion</key>
20-
<string>64</string>
20+
<string>65</string>
2121
<key>NSPrincipalClass</key>
2222
<string></string>
2323
</dict>

Sources/TestHelper/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
<key>CFBundleShortVersionString</key>
1818
<string>2.0.0</string>
1919
<key>CFBundleVersion</key>
20-
<string>64</string>
20+
<string>65</string>
2121
</dict>
2222
</plist>

Tests/CocoaPodsTest/PodInstall/Podfile.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PODS:
22
- MapboxCommon (16.0.0)
33
- MapboxCoreMaps (10.0.0-rc.5):
44
- MapboxCommon (~> 16.0.0)
5-
- MapboxCoreNavigation (2.0.0-beta.20):
5+
- MapboxCoreNavigation (2.0.0-beta.21):
66
- MapboxDirections-pre (= 2.0.0-beta.7)
77
- MapboxMobileEvents (~> 1.0.0)
88
- MapboxNavigationNative (~> 60.0)
@@ -16,8 +16,8 @@ PODS:
1616
- MapboxMobileEvents (= 1.0.2)
1717
- Turf (= 2.0.0-beta.1)
1818
- MapboxMobileEvents (1.0.2)
19-
- MapboxNavigation (2.0.0-beta.20):
20-
- MapboxCoreNavigation (= 2.0.0-beta.20)
19+
- MapboxNavigation (2.0.0-beta.21):
20+
- MapboxCoreNavigation (= 2.0.0-beta.21)
2121
- MapboxMaps (= 10.0.0-rc.5)
2222
- MapboxMobileEvents (~> 1.0.0)
2323
- MapboxSpeech-pre (= 2.0.0-alpha.1)
@@ -55,11 +55,11 @@ EXTERNAL SOURCES:
5555
SPEC CHECKSUMS:
5656
MapboxCommon: 44430838b703d0b1b5032f3c8501c60c7c70d3cc
5757
MapboxCoreMaps: 0aa69120a787fce64eb66ea1068a707fbc0a3c8b
58-
MapboxCoreNavigation: 9b4a56a6e5d264ce34a6dabc8f9ff8b736d1146a
58+
MapboxCoreNavigation: d79eb0b5d0d35c9ebaadbc7ed9bc07faff58c0e4
5959
MapboxDirections-pre: 929a1a63063c9c97f88b793e70143d547eaed293
6060
MapboxMaps: b966939712943f6af126aadf73b82b43c0535020
6161
MapboxMobileEvents: 9775eb995e06cc3ea10894bf6ab111683c8e73e7
62-
MapboxNavigation: 2d176753c3ae20973387d314a7a7251c14bdba1c
62+
MapboxNavigation: 4cd5a5c46c9ec186f46b9509f85e5fe0c8782221
6363
MapboxNavigationNative: 9f49640451eca820667c657475d412e1c990d41b
6464
MapboxSpeech-pre: aeb16de604d07ceb4195150c3359d5401bb298e6
6565
Polyline: fce41d72e1146c41c6d081f7656827226f643dff

Tests/MapboxCoreNavigationTests/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
2222
<string>Location Usage Description</string>
2323
<key>CFBundleVersion</key>
24-
<string>64</string>
24+
<string>65</string>
2525
</dict>
2626
</plist>

Tests/MapboxNavigationTests/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
<key>NSLocationWhenInUseUsageDescription</key>
2222
<string>Location Usage Description</string>
2323
<key>CFBundleVersion</key>
24-
<string>64</string>
24+
<string>65</string>
2525
</dict>
2626
</plist>

custom-navigation.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ To install the MapboxCoreNavigation framework in an application using [Swift Pac
3636
To install the MapboxCoreNavigation framework in another package rather than an application, run `swift package init` to create a Package.swift, then add the following dependency:
3737

3838
```swift
39-
.package(name: "MapboxCoreNavigation", url: "https://github.com/mapbox/mapbox-navigation-ios.git", .exact("2.0.0-beta.20"))
39+
.package(name: "MapboxCoreNavigation", url: "https://github.com/mapbox/mapbox-navigation-ios.git", .exact("2.0.0-beta.21"))
4040
```
4141

4242
### Using CocoaPods
@@ -53,7 +53,7 @@ To install Mapbox Core Navigation using [CocoaPods](https://cocoapods.org/):
5353

5454
1. Create a [Podfile](https://guides.cocoapods.org/syntax/podfile.html) with the following specification:
5555
```ruby
56-
pod 'MapboxCoreNavigation', :git => 'https://github.com/mapbox/mapbox-navigation-ios.git', :tag => 'v2.0.0-beta.20'
56+
pod 'MapboxCoreNavigation', :git => 'https://github.com/mapbox/mapbox-navigation-ios.git', :tag => 'v2.0.0-beta.21'
5757
```
5858

5959
1. Run `pod repo update && pod install` and open the resulting Xcode workspace.
@@ -77,7 +77,7 @@ To install Mapbox Navigation using [Carthage](https://github.com/Carthage/Cartha
7777

7878
1. Create a [Cartfile](https://github.com/Carthage/Carthage/blob/master/Documentation/Artifacts.md#github-repositories) with the following dependency:
7979
```cartfile
80-
github "mapbox/mapbox-navigation-ios" "v2.0.0-beta.20"
80+
github "mapbox/mapbox-navigation-ios" "v2.0.0-beta.21"
8181
```
8282

8383
1. Run `carthage bootstrap --platform iOS --use-xcframeworks --cache-builds --use-netrc`.

0 commit comments

Comments
 (0)