Skip to content

Commit 96b2d6e

Browse files
author
Bobby Sudekum
authored
Merge pull request #1507 from mapbox/release0181
Release v0.18.1
2 parents 2a5d2f7 + 56f9ba3 commit 96b2d6e

File tree

12 files changed

+36
-27
lines changed

12 files changed

+36
-27
lines changed

CHANGELOG.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,23 @@
11
# Changes to the Mapbox Navigation SDK for iOS
22

3-
## master
3+
## v0.18.1 (June 19, 2018)
4+
5+
### Packaging
46

57
* Increased the minimum deployment target of Core Navigation to iOS 9. ([#1494](https://github.com/mapbox/mapbox-navigation-ios/pull/1494))
8+
9+
### User interface
10+
611
* Added `NavigationMapView.recenterMap()` for recentering the map if a user gesture causes it to stop following the user. ([#1471](https://github.com/mapbox/mapbox-navigation-ios/pull/1471))
12+
* Deprecated `NavigationViewController.usesNightStyleInsideTunnels`. Style switching is enabled as a side effect of `TunnelIntersectionManager.tunnelSimulationEnabled`, which is set to `true` by default. ([#1489]
13+
* Fixed an issue where the user location view slid around after the user pressed the Overview button. [#1506](https://github.com/mapbox/mapbox-navigation-ios/pull/1506)
14+
15+
### Core Navigation
16+
717
* Moved `RouteController.tunnelSimulationEnabled` to `TunnelIntersectionManager.tunnelSimulationEnabled`. ([#1489](https://github.com/mapbox/mapbox-navigation-ios/pull/1489))
8-
* Deprecated `NavigationViewController.usesNightStyleInsideTunnels`. Style switching is enabled as a side effect of `TunnelIntersectionManager.tunnelSimulationEnabled`, which is set to `true` by default. ([#1489](https://github.com/mapbox/mapbox-navigation-ios/pull/1489))
9-
* Added `RouteControllerDelegate.routeControllerWillDisableBatteryMonitoring(_:)` which allows developers control whether battery monitoring is disabled when `RouteController.deinit()` is called.
18+
(https://github.com/mapbox/mapbox-navigation-ios/pull/1489))
19+
* Added `RouteControllerDelegate.routeControllerWillDisableBatteryMonitoring(_:)` which allows developers control whether battery monitoring is disabled when `RouteController.deinit()` is called. [#1476](https://github.com/mapbox/mapbox-navigation-ios/pull/1476)
1020
* Fixed an issue where setting `NavigationLocationManager.desiredAccuracy` had no effect. [#1481](https://github.com/mapbox/mapbox-navigation-ios/pull/1481)
11-
* Fixed an issue where the user location view slid around after the user pressed the Overview button. [#1506](https://github.com/mapbox/mapbox-navigation-ios/pull/1506)
1221

1322
## v0.18.0 (June 5, 2018)
1423

Examples/Objective-CTests/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.18.0</string>
18+
<string>0.18.1</string>
1919
<key>CFBundleVersion</key>
20-
<string>27</string>
20+
<string>28</string>
2121
</dict>
2222
</plist>

Examples/SwiftTests/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.18.0</string>
18+
<string>0.18.1</string>
1919
<key>CFBundleVersion</key>
20-
<string>27</string>
20+
<string>28</string>
2121
</dict>
2222
</plist>

MapboxCoreNavigation.podspec

Lines changed: 1 addition & 1 deletion
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 = "0.18.0"
6+
s.version = "0.18.1"
77
s.summary = "Core components for turn-by-turn navigation on iOS."
88

99
s.description = <<-DESC

MapboxCoreNavigation/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.18.0</string>
18+
<string>0.18.1</string>
1919
<key>CFBundleVersion</key>
20-
<string>27</string>
20+
<string>28</string>
2121
<key>NSPrincipalClass</key>
2222
<string></string>
2323
</dict>

MapboxCoreNavigationTests/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.18.0</string>
18+
<string>0.18.1</string>
1919
<key>CFBundleVersion</key>
20-
<string>27</string>
20+
<string>28</string>
2121
</dict>
2222
</plist>

MapboxNavigation-Documentation.podspec

Lines changed: 1 addition & 1 deletion
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 = "0.18.0"
6+
s.version = "0.18.1"
77
s.summary = "Complete turn-by-turn navigation interface for iOS."
88

99
s.description = <<-DESC

MapboxNavigation.podspec

Lines changed: 1 addition & 1 deletion
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 = "0.18.0"
6+
s.version = "0.18.1"
77
s.summary = "Complete turn-by-turn navigation interface for iOS."
88

99
s.description = <<-DESC

MapboxNavigation.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2271,7 +2271,7 @@
22712271
DEFINES_MODULE = YES;
22722272
DEVELOPMENT_TEAM = GJZR2MEM28;
22732273
DYLIB_COMPATIBILITY_VERSION = 1;
2274-
DYLIB_CURRENT_VERSION = 27;
2274+
DYLIB_CURRENT_VERSION = 28;
22752275
DYLIB_INSTALL_NAME_BASE = "@rpath";
22762276
FRAMEWORK_SEARCH_PATHS = (
22772277
"$(inherited)",
@@ -2297,7 +2297,7 @@
22972297
DEFINES_MODULE = YES;
22982298
DEVELOPMENT_TEAM = GJZR2MEM28;
22992299
DYLIB_COMPATIBILITY_VERSION = 1;
2300-
DYLIB_CURRENT_VERSION = 27;
2300+
DYLIB_CURRENT_VERSION = 28;
23012301
DYLIB_INSTALL_NAME_BASE = "@rpath";
23022302
FRAMEWORK_SEARCH_PATHS = (
23032303
"$(inherited)",
@@ -2590,7 +2590,7 @@
25902590
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
25912591
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
25922592
COPY_PHASE_STRIP = NO;
2593-
CURRENT_PROJECT_VERSION = 27;
2593+
CURRENT_PROJECT_VERSION = 28;
25942594
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
25952595
ENABLE_STRICT_OBJC_MSGSEND = YES;
25962596
ENABLE_TESTABILITY = YES;
@@ -2654,7 +2654,7 @@
26542654
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
26552655
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
26562656
COPY_PHASE_STRIP = NO;
2657-
CURRENT_PROJECT_VERSION = 27;
2657+
CURRENT_PROJECT_VERSION = 28;
26582658
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
26592659
ENABLE_NS_ASSERTIONS = NO;
26602660
ENABLE_STRICT_OBJC_MSGSEND = YES;
@@ -2687,7 +2687,7 @@
26872687
DEFINES_MODULE = YES;
26882688
DEVELOPMENT_TEAM = GJZR2MEM28;
26892689
DYLIB_COMPATIBILITY_VERSION = 1;
2690-
DYLIB_CURRENT_VERSION = 27;
2690+
DYLIB_CURRENT_VERSION = 28;
26912691
DYLIB_INSTALL_NAME_BASE = "@rpath";
26922692
FRAMEWORK_SEARCH_PATHS = (
26932693
"$(inherited)",
@@ -2714,7 +2714,7 @@
27142714
DEFINES_MODULE = YES;
27152715
DEVELOPMENT_TEAM = GJZR2MEM28;
27162716
DYLIB_COMPATIBILITY_VERSION = 1;
2717-
DYLIB_CURRENT_VERSION = 27;
2717+
DYLIB_CURRENT_VERSION = 28;
27182718
DYLIB_INSTALL_NAME_BASE = "@rpath";
27192719
FRAMEWORK_SEARCH_PATHS = (
27202720
"$(inherited)",

MapboxNavigation/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.18.0</string>
18+
<string>0.18.1</string>
1919
<key>CFBundleVersion</key>
20-
<string>27</string>
20+
<string>28</string>
2121
<key>NSPrincipalClass</key>
2222
<string></string>
2323
</dict>

0 commit comments

Comments
 (0)