Skip to content

Commit 8927113

Browse files
committed
Merge pull request #118 from Quick/ios-7-deployment-target
Nimble.xcodeproj: Lower iOS deployment target to 7.0
2 parents 4ecc2f6 + 6a9a103 commit 8927113

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

Nimble.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Pod::Spec.new do |s|
22
s.name = "Nimble"
3-
s.version = "0.4.1"
3+
s.version = "0.4.2"
44
s.summary = "A Matcher Framework for Swift and Objective-C"
55
s.description = <<-DESC
66
Use Nimble to express the expected outcomes of Swift or Objective-C expressions. Inspired by Cedar.
77
DESC
88
s.homepage = "https://github.com/Quick/Nimble"
99
s.license = { :type => "Apache 2.0", :file => "LICENSE.md" }
1010
s.author = "Quick Contributors"
11-
s.ios.deployment_target = "8.0"
11+
s.ios.deployment_target = "7.0"
1212
s.osx.deployment_target = "10.10"
1313
s.source = { :git => "https://github.com/Quick/Nimble.git", :tag => "v#{s.version}" }
1414

Nimble.xcodeproj/project.pbxproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1043,7 +1043,7 @@
10431043
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
10441044
GCC_WARN_UNUSED_FUNCTION = YES;
10451045
GCC_WARN_UNUSED_VARIABLE = YES;
1046-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1046+
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
10471047
METAL_ENABLE_DEBUG_INFO = YES;
10481048
ONLY_ACTIVE_ARCH = YES;
10491049
SDKROOT = iphoneos;
@@ -1083,7 +1083,7 @@
10831083
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
10841084
GCC_WARN_UNUSED_FUNCTION = YES;
10851085
GCC_WARN_UNUSED_VARIABLE = YES;
1086-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1086+
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
10871087
METAL_ENABLE_DEBUG_INFO = NO;
10881088
SDKROOT = iphoneos;
10891089
TARGETED_DEVICE_FAMILY = "1,2";
@@ -1109,6 +1109,7 @@
11091109
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
11101110
INFOPLIST_FILE = Nimble/Info.plist;
11111111
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1112+
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
11121113
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
11131114
ONLY_ACTIVE_ARCH = NO;
11141115
OTHER_LDFLAGS = (
@@ -1139,6 +1140,7 @@
11391140
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
11401141
INFOPLIST_FILE = Nimble/Info.plist;
11411142
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1143+
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
11421144
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
11431145
OTHER_LDFLAGS = (
11441146
"-framework",

0 commit comments

Comments
 (0)