Skip to content

Commit

Permalink
Dropped support for iOS 9.x
Browse files Browse the repository at this point in the history
The minimum deployment target is now iOS 10.0. Updated the CircleCI configuration to test on iOS 10.3.1 instead of 9.3.
  • Loading branch information
1ec5 committed Aug 19, 2019
1 parent 0949bcf commit c1b5b6c
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,9 @@ workflows:
iOS: "12.1"
codecoverage: true
- build-job:
name: "Xcode_10.1_iOS_9.3"
name: "Xcode_10.1_iOS_10.3.1"
xcode: "10.1.0"
iOS: "9.3"
iOS: "10.3.1"
delete_private_deps: true
test: false
- pod-job:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changes to the Mapbox Navigation SDK for iOS

## master

* This library now requires a minimum deployment target of iOS 10.0 or above. iOS 9._x_ is no longer supported. ([#2206](https://github.com/mapbox/mapbox-navigation-ios/pull/2206))
* Fixed an issue where swiping the banner down after the StepsTableViewController has already displayed could put the UI in an unstable state. ([#2197](https://github.com/mapbox/mapbox-navigation-ios/pull/2197))

## v0.36.0
Expand Down
2 changes: 1 addition & 1 deletion MapboxCoreNavigation.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Pod::Spec.new do |s|

# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #

s.ios.deployment_target = "9.0"
s.ios.deployment_target = "10.0"


# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
Expand Down
2 changes: 1 addition & 1 deletion MapboxCoreNavigationTests/CocoaPodsTest/PodInstall/Podfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
platform :ios, '9.0'
platform :ios, '10.0'
use_frameworks!

target 'PodInstall' do
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,16 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
Mapbox-iOS-SDK: 3e095b305126d52ba166fe215d847b15b6fbee63
MapboxCoreNavigation: 41f550b9e22bf92c0adff2784881441d363ffb1c
MapboxCoreNavigation: 308aa3187b0e7425952162955f3d5ac70dc73879
MapboxDirections.swift: 1c6df988c24b753888ebd9976d7c98632501a413
MapboxMobileEvents: f6c21b2e59066c5c7093585de7c15adae3b63da0
MapboxNavigation: d34ca18d915c3b3caefccaca5ceb7261c5e2be11
MapboxNavigation: 50574816ad45645aefca3ddc5a2459cabc6081fc
MapboxNavigationNative: 11dc22140f4698d3f26989f2b6379dc81ef0d4c1
MapboxSpeech: 59b3984d3f433a443d24acf53097f918c5cc70f9
Polyline: 0e9890790292741c8186201a536b6bb6a78d02dd
Solar: 2dc6e7cc39186cb0c8228fa08df76fb50c7d8f24
Turf: c6bdf62d6a70c647874f295dd1cf4eefc0c3e9e6

PODFILE CHECKSUM: 55ae5a7edbc3dedda5149ba3d58b992ab7327f95
PODFILE CHECKSUM: d4084fe664fbacd0cffd88ab45eaed1ad907ad1d

COCOAPODS: 1.7.5
2 changes: 1 addition & 1 deletion MapboxNavigation.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Pod::Spec.new do |s|

# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #

s.ios.deployment_target = "9.0"
s.ios.deployment_target = "10.0"

# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #

Expand Down
4 changes: 2 additions & 2 deletions MapboxNavigation.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3365,7 +3365,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -3423,7 +3423,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ Get up and running in a few minutes with our drop-in turn-by-turn navigation `Na

## Requirements

The Mapbox Navigation SDK and Core Navigation are compatible with applications written in Swift 4.2 or Objective-C in Xcode 10.0. The Mapbox Navigation and Mapbox Core Navigation frameworks run on iOS 9.0 and above.
The Mapbox Navigation SDK and Core Navigation are compatible with applications written in Swift 4.2 or Objective-C in Xcode 10.0. The Mapbox Navigation and Mapbox Core Navigation frameworks run on iOS 10.0 and above.

The last release compatible with Swift 3.2 was v0.10.1.
The last release compatible with Swift 3.2 was v0.10.1. The last release compatible with iOS 9._x_ was v0.36.0.

The Mapbox Navigation SDK is also available [for Android](https://github.com/mapbox/mapbox-navigation-android/).

Expand Down

0 comments on commit c1b5b6c

Please sign in to comment.