Skip to content

Commit ef8555e

Browse files
authored
Merge pull request #99 from Carthage/update-result-and-nimble
Update Result and Nimble for Swift 3.1 compatibility
2 parents 09d6b9c + e1ebd6d commit ef8555e

File tree

8 files changed

+14
-10
lines changed

8 files changed

+14
-10
lines changed

.Package.test.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import PackageDescription
33
let package = Package(
44
name: "Commandant",
55
dependencies: [
6-
.Package(url: "https://github.com/antitypical/Result.git", versions: Version(3, 1, 0)..<Version(3, .max, .max)),
7-
.Package(url: "https://github.com/Quick/Nimble", majorVersion: 6),
8-
.Package(url: "https://github.com/Quick/Quick", majorVersion: 1, minor: 1),
6+
.Package(url: "https://github.com/antitypical/Result.git", versions: Version(3, 2, 1)..<Version(3, .max, .max)),
7+
.Package(url: "https://github.com/Quick/Nimble.git", majorVersion: 6),
8+
.Package(url: "https://github.com/Quick/Quick.git", majorVersion: 1, minor: 1),
99
]
1010
)

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ matrix:
1919
env: JOB=Xcode8
2020
- script:
2121
- mv .Package.test.swift Package.swift
22+
- swift package update
23+
- cd Packages/Nimble-* && git checkout 8116a83864ee78339798c3ef425c42f6ca6bf034 && cd ../../
2224
- SWIFT_GIT=`xcrun --find git` swift build
2325
- swift test
2426
os: osx
@@ -27,6 +29,8 @@ matrix:
2729
env: JOB=SPM
2830
- script:
2931
- mv .Package.test.swift Package.swift
32+
- swift package update
33+
- cd Packages/Nimble-* && git checkout 8116a83864ee78339798c3ef425c42f6ca6bf034 && cd ../../
3034
- swift build
3135
- swift test
3236
env: JOB=Linux

Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "antitypical/Result" ~> 3.1
1+
github "antitypical/Result" ~> 3.2.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" ~> 0.9
22
github "Quick/Quick" ~> 1.1
3-
github "Quick/Nimble" ~> 6.0
3+
github "Quick/Nimble" "8116a83864ee78339798c3ef425c42f6ca6bf034"

Cartfile.resolved

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
github "Quick/Nimble" "v6.0.1"
1+
github "Quick/Nimble" "8116a83864ee78339798c3ef425c42f6ca6bf034"
22
github "Quick/Quick" "v1.1.0"
3-
github "antitypical/Result" "3.1.0"
3+
github "antitypical/Result" "3.2.1"
44
github "jspahrsummers/xcconfigs" "0.9"

Carthage/Checkouts/Nimble

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ import PackageDescription
33
let package = Package(
44
name: "Commandant",
55
dependencies: [
6-
.Package(url: "https://github.com/antitypical/Result.git", versions: Version(3, 1, 0)..<Version(3, .max, .max)),
6+
.Package(url: "https://github.com/antitypical/Result.git", versions: Version(3, 2, 1)..<Version(3, .max, .max)),
77
]
88
)

0 commit comments

Comments
 (0)