Skip to content

Commit 594f6d7

Browse files
authored
Merge pull request #94 from Carthage/swift-3.1
Xcode 8.3 / SwiftPM 3.1
2 parents 271311c + 4b197a9 commit 594f6d7

File tree

11 files changed

+61
-34
lines changed

11 files changed

+61
-34
lines changed

.Package.test.swift

Lines changed: 0 additions & 11 deletions
This file was deleted.

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### https://raw.github.com/github/gitignore/afbff9027d02ccfc680e031f6c295f79ad61662d/Swift.gitignore
1+
### https://raw.github.com/github/gitignore/c0c1a480a906df0e023f3250cf2ad82f1612be67/Swift.gitignore
22

33
# Xcode
44
#
@@ -20,9 +20,8 @@ DerivedData/
2020
xcuserdata/
2121

2222
## Other
23-
*.xccheckout
2423
*.moved-aside
25-
*.xcuserstate
24+
*.xccheckout
2625
*.xcscmblueprint
2726

2827
## Obj-C/Swift specific
@@ -39,6 +38,7 @@ playground.xcworkspace
3938
#
4039
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
4140
# Packages/
41+
# Package.pins
4242
.build/
4343

4444
# CocoaPods

.swift-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.2
1+
3.1

.travis.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,22 @@
11
language: objective-c
22
xcode_workspace: ReactiveTask.xcworkspace
3-
git:
4-
submodules: false
53
branches:
64
only:
75
- master
86
matrix:
97
include:
108
- os: osx
11-
osx_image: xcode8.2
9+
osx_image: xcode8.3
1210
xcode_scheme: ReactiveTask
13-
before_script:
14-
- git submodule update --init --recursive
1511
script:
1612
- set -o pipefail && xcodebuild -workspace "$TRAVIS_XCODE_WORKSPACE" -scheme "$TRAVIS_XCODE_SCHEME" test | xcpretty
1713
env: JOB=Xcode8
1814
- os: osx
19-
osx_image: xcode8.2
15+
osx_image: xcode8.3
2016
script:
21-
- mv .Package.test.swift Package.swift
2217
- swift package update
23-
- cd Packages/Nimble-* && git checkout 8116a83864ee78339798c3ef425c42f6ca6bf034 && cd ../../
2418
- swift build
25-
- swift test
19+
- SWIFTPM_TEST_ReactiveTask=YES swift test
2620
env: JOB=SWIFTPM_DARWIN
2721
notifications:
2822
email: false

Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github "antitypical/Result" ~> 3.2
1+
github "antitypical/Result" ~> 3.2.1
22
github "ReactiveCocoa/ReactiveSwift" ~> 1.1

Cartfile.private

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
github "jspahrsummers/xcconfigs" "3d9d996"
22
github "Quick/Quick" ~> 1.1
3-
github "Quick/Nimble" "8116a83864ee78339798c3ef425c42f6ca6bf034"
3+
github "Quick/Nimble" ~> 6.1

Cartfile.resolved

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
github "Quick/Nimble" "8116a83864ee78339798c3ef425c42f6ca6bf034"
1+
github "Quick/Nimble" "v6.1.0"
22
github "Quick/Quick" "v1.1.0"
33
github "ReactiveCocoa/ReactiveSwift" "1.1.0"
4-
github "antitypical/Result" "3.2.0"
4+
github "antitypical/Result" "3.2.1"
55
github "jspahrsummers/xcconfigs" "3d9d99634cae6d586e272543d527681283b33eb0"

Carthage/Checkouts/Nimble

Submodule Nimble updated 31 files

Package.pins

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"autoPin": true,
3+
"pins": [
4+
{
5+
"package": "Nimble",
6+
"reason": null,
7+
"repositoryURL": "https://github.com/Quick/Nimble.git",
8+
"version": "6.1.0"
9+
},
10+
{
11+
"package": "Quick",
12+
"reason": null,
13+
"repositoryURL": "https://github.com/Quick/Quick.git",
14+
"version": "1.1.0"
15+
},
16+
{
17+
"package": "ReactiveSwift",
18+
"reason": null,
19+
"repositoryURL": "https://github.com/ReactiveCocoa/ReactiveSwift.git",
20+
"version": "1.1.1"
21+
},
22+
{
23+
"package": "Result",
24+
"reason": null,
25+
"repositoryURL": "https://github.com/antitypical/Result.git",
26+
"version": "3.2.1"
27+
}
28+
],
29+
"version": 1
30+
}

0 commit comments

Comments
 (0)