Skip to content

Commit d6c4bf4

Browse files
authored
Merge pull request #69 from Carthage/swift2.3
Support Swift 2.3
2 parents 2667679 + 3ead4cc commit d6c4bf4

File tree

8 files changed

+23
-10
lines changed

8 files changed

+23
-10
lines changed

.travis.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
language: objective-c
2-
osx_image: xcode7.3
32
xcode_workspace: ReactiveTask.xcworkspace
4-
xcode_scheme: ReactiveTask
53
git:
64
submodules: false
75
before_script:
86
- git submodule update --init --recursive
97
script:
108
- set -o pipefail && xcodebuild -workspace "$TRAVIS_XCODE_WORKSPACE" -scheme "$TRAVIS_XCODE_SCHEME" test | xcpretty
9+
matrix:
10+
include:
11+
- osx_image: xcode7.3
12+
xcode_scheme: ReactiveTask
13+
env: JOB=Xcode7.3
14+
- osx_image: xcode8
15+
xcode_scheme: ReactiveTask
16+
env: JOB=Xcode8
1117
notifications:
1218
email: false
1319
slack:
@@ -27,3 +33,4 @@ deploy:
2733
on:
2834
repo: Carthage/ReactiveTask
2935
tags: true
36+
condition: $JOB = Xcode7.3

Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "ReactiveCocoa/ReactiveCocoa" ~> 4.2.1
1+
github "ReactiveCocoa/ReactiveCocoa" ~> 4.2.2

Cartfile.private

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
github "sharplet/Quick" "xcode-8"
22
github "Quick/Nimble" "188caeb"
3-
github "jspahrsummers/xcconfigs" ~> 0.9
3+
github "jspahrsummers/xcconfigs" "1ef9763"

Cartfile.resolved

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
github "Quick/Nimble" "188caeb094bc342614d8a5c706cd8bb9a6c355eb"
22
github "sharplet/Quick" "e2cfb86c8379417c9272bb853e9f0c407167d486"
3-
github "antitypical/Result" "2.1.2"
4-
github "jspahrsummers/xcconfigs" "0.9"
5-
github "ReactiveCocoa/ReactiveCocoa" "v4.2.1"
3+
github "antitypical/Result" "2.1.3"
4+
github "jspahrsummers/xcconfigs" "1ef97639ffbe041da0b1392b2114fa19b922a7a1"
5+
github "ReactiveCocoa/ReactiveCocoa" "v4.2.2"

Carthage/Checkouts/ReactiveCocoa

Submodule ReactiveCocoa updated 38 files

Carthage/Checkouts/xcconfigs

ReactiveTask.xcodeproj/project.pbxproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,9 +274,11 @@
274274
TargetAttributes = {
275275
D0BFEA571A2D1E5E00E23194 = {
276276
CreatedOnToolsVersion = 6.1.1;
277+
LastSwiftMigration = 0800;
277278
};
278279
D0BFEA621A2D1E5E00E23194 = {
279280
CreatedOnToolsVersion = 6.1.1;
281+
LastSwiftMigration = 0800;
280282
};
281283
};
282284
};
@@ -354,6 +356,7 @@
354356
MACOSX_DEPLOYMENT_TARGET = 10.9;
355357
ONLY_ACTIVE_ARCH = YES;
356358
SDKROOT = macosx;
359+
SWIFT_VERSION = 2.3;
357360
VERSIONING_SYSTEM = "apple-generic";
358361
VERSION_INFO_PREFIX = "";
359362
};
@@ -367,6 +370,7 @@
367370
GCC_NO_COMMON_BLOCKS = YES;
368371
MACOSX_DEPLOYMENT_TARGET = 10.9;
369372
SDKROOT = macosx;
373+
SWIFT_VERSION = 2.3;
370374
VERSIONING_SYSTEM = "apple-generic";
371375
VERSION_INFO_PREFIX = "";
372376
};
@@ -434,6 +438,7 @@
434438
GCC_NO_COMMON_BLOCKS = YES;
435439
MACOSX_DEPLOYMENT_TARGET = 10.9;
436440
SDKROOT = macosx;
441+
SWIFT_VERSION = 2.3;
437442
VERSIONING_SYSTEM = "apple-generic";
438443
VERSION_INFO_PREFIX = "";
439444
};
@@ -474,6 +479,7 @@
474479
GCC_NO_COMMON_BLOCKS = YES;
475480
MACOSX_DEPLOYMENT_TARGET = 10.9;
476481
SDKROOT = macosx;
482+
SWIFT_VERSION = 2.3;
477483
VERSIONING_SYSTEM = "apple-generic";
478484
VERSION_INFO_PREFIX = "";
479485
};

0 commit comments

Comments
 (0)