Skip to content

Commit 6df4d49

Browse files
committed
Update deployment targets
1 parent 6c483cc commit 6df4d49

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

BUILD

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ objc_library(
3030

3131
ios_unit_test(
3232
name = "Tests",
33-
minimum_os_version = "9.0",
33+
minimum_os_version = "8.0",
3434
deps = [
3535
":FBLFunctionalTests",
3636
],

FBLFunctional.xcodeproj/project.pbxproj

+10-5
Original file line numberDiff line numberDiff line change
@@ -109,14 +109,13 @@
109109
name = Products;
110110
sourceTree = BUILT_PRODUCTS_DIR;
111111
};
112-
OBJ_5 /* */ = {
112+
OBJ_5 = {
113113
isa = PBXGroup;
114114
children = (
115115
OBJ_7 /* Sources */,
116116
OBJ_18 /* Tests */,
117117
OBJ_24 /* Products */,
118118
);
119-
name = "";
120119
sourceTree = "<group>";
121120
};
122121
OBJ_7 /* Sources */ = {
@@ -205,7 +204,7 @@
205204
knownRegions = (
206205
en,
207206
);
208-
mainGroup = OBJ_5 /* */;
207+
mainGroup = OBJ_5;
209208
productRefGroup = OBJ_24 /* Products */;
210209
projectDirPath = "";
211210
projectRoot = "";
@@ -258,11 +257,14 @@
258257
DYLIB_INSTALL_NAME_BASE = "@rpath";
259258
ENABLE_NS_ASSERTIONS = YES;
260259
GCC_OPTIMIZATION_LEVEL = 0;
260+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
261+
MACOSX_DEPLOYMENT_TARGET = 10.10;
261262
ONLY_ACTIVE_ARCH = YES;
262263
PRODUCT_NAME = "$(TARGET_NAME)";
263-
SDKROOT = macosx;
264264
SUPPORTED_PLATFORMS = "macosx iphoneos iphonesimulator appletvos appletvsimulator watchos watchsimulator";
265+
TVOS_DEPLOYMENT_TARGET = 9.0;
265266
USE_HEADERMAP = NO;
267+
WATCHOS_DEPLOYMENT_TARGET = 2.0;
266268
};
267269
name = Debug;
268270
};
@@ -313,10 +315,13 @@
313315
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
314316
DYLIB_INSTALL_NAME_BASE = "@rpath";
315317
GCC_OPTIMIZATION_LEVEL = s;
318+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
319+
MACOSX_DEPLOYMENT_TARGET = 10.10;
316320
PRODUCT_NAME = "$(TARGET_NAME)";
317-
SDKROOT = macosx;
318321
SUPPORTED_PLATFORMS = "macosx iphoneos iphonesimulator appletvos appletvsimulator watchos watchsimulator";
322+
TVOS_DEPLOYMENT_TARGET = 9.0;
319323
USE_HEADERMAP = NO;
324+
WATCHOS_DEPLOYMENT_TARGET = 2.0;
320325
};
321326
name = Release;
322327
};

FunctionalObjC.podspec

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FunctionalObjC'
3-
s.version = '1.0.1'
3+
s.version = '1.0.2'
44
s.authors = 'Google Inc.'
55
s.license = { :type => 'Apache', :file => 'LICENSE' }
66
s.homepage = 'https://github.com/google/functional-objc'
@@ -14,9 +14,10 @@ Pod::Spec.new do |s|
1414
NSDictionary, NSOrderedSet, and NSSet.
1515
DESC
1616

17-
s.ios.deployment_target = '9.0'
17+
s.ios.deployment_target = '8.0'
1818
s.osx.deployment_target = '10.10'
1919
s.tvos.deployment_target = '9.0'
20+
s.watchos.deployment_target = '2.0'
2021

2122
s.module_name = 'FBLFunctional'
2223
s.prefix_header_file = false

0 commit comments

Comments
 (0)