Skip to content

Commit

Permalink
Merge pull request #99 from Carthage/update-result-and-nimble
Browse files Browse the repository at this point in the history
Update Result and Nimble for Swift 3.1 compatibility
  • Loading branch information
ikesyo authored Mar 7, 2017
2 parents 09d6b9c + e1ebd6d commit ef8555e
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .Package.test.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import PackageDescription
let package = Package(
name: "Commandant",
dependencies: [
.Package(url: "https://github.com/antitypical/Result.git", versions: Version(3, 1, 0)..<Version(3, .max, .max)),
.Package(url: "https://github.com/Quick/Nimble", majorVersion: 6),
.Package(url: "https://github.com/Quick/Quick", majorVersion: 1, minor: 1),
.Package(url: "https://github.com/antitypical/Result.git", versions: Version(3, 2, 1)..<Version(3, .max, .max)),
.Package(url: "https://github.com/Quick/Nimble.git", majorVersion: 6),
.Package(url: "https://github.com/Quick/Quick.git", majorVersion: 1, minor: 1),
]
)
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ matrix:
env: JOB=Xcode8
- script:
- mv .Package.test.swift Package.swift
- swift package update
- cd Packages/Nimble-* && git checkout 8116a83864ee78339798c3ef425c42f6ca6bf034 && cd ../../
- SWIFT_GIT=`xcrun --find git` swift build
- swift test
os: osx
Expand All @@ -27,6 +29,8 @@ matrix:
env: JOB=SPM
- script:
- mv .Package.test.swift Package.swift
- swift package update
- cd Packages/Nimble-* && git checkout 8116a83864ee78339798c3ef425c42f6ca6bf034 && cd ../../
- swift build
- swift test
env: JOB=Linux
Expand Down
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "antitypical/Result" ~> 3.1
github "antitypical/Result" ~> 3.2.1
2 changes: 1 addition & 1 deletion Cartfile.private
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
github "jspahrsummers/xcconfigs" ~> 0.9
github "Quick/Quick" ~> 1.1
github "Quick/Nimble" ~> 6.0
github "Quick/Nimble" "8116a83864ee78339798c3ef425c42f6ca6bf034"
4 changes: 2 additions & 2 deletions Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
github "Quick/Nimble" "v6.0.1"
github "Quick/Nimble" "8116a83864ee78339798c3ef425c42f6ca6bf034"
github "Quick/Quick" "v1.1.0"
github "antitypical/Result" "3.1.0"
github "antitypical/Result" "3.2.1"
github "jspahrsummers/xcconfigs" "0.9"
2 changes: 1 addition & 1 deletion Carthage/Checkouts/Nimble
Submodule Nimble updated 22 files
+1 −1 Gemfile
+25 −21 Gemfile.lock
+18 −14 Nimble.xcodeproj/project.pbxproj
+14 −9 README.md
+2 −0 Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/CwlCatchException.h
+2 −0 Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/CwlCatchException.m
+9 −4 Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/CwlCatchException.swift
+19 −6 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlBadInstructionException.swift
+0 −50 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstruction.m
+6 −1 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstruction.swift
+77 −66 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstructionPOSIX.swift
+28 −36 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlDarwinDefinitions.swift
+16 −2 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlMachBadInstructionHandler.h
+49 −0 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlMachBadInstructionHandler.m
+20 −23 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/Info.plist
+4 −4 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/mach_excServer.c
+23 −0 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/mach_excServer.h
+5 −5 Sources/Nimble/DSL+Wait.swift
+2 −2 Sources/Nimble/FailureMessage.swift
+1 −1 Sources/Nimble/Nimble.h
+1 −1 Sources/Nimble/Utils/Async.swift
+1 −1 Tests/NimbleTests/Matchers/BeIdenticalToTest.swift
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import PackageDescription
let package = Package(
name: "Commandant",
dependencies: [
.Package(url: "https://github.com/antitypical/Result.git", versions: Version(3, 1, 0)..<Version(3, .max, .max)),
.Package(url: "https://github.com/antitypical/Result.git", versions: Version(3, 2, 1)..<Version(3, .max, .max)),
]
)

0 comments on commit ef8555e

Please sign in to comment.