Skip to content

Commit

Permalink
Quick, Numble update
Browse files Browse the repository at this point in the history
  • Loading branch information
NikSativa committed Jun 27, 2022
1 parent f333c1e commit 3d4ccb9
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Build_Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: [macos-latest]
swift: ["5.3", "5.4"]
swift: ["5.3", "5.4", "5.5", "5.6"]
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion NQueue.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "NQueue"
spec.version = "1.1.10"
spec.version = "1.1.14"
spec.summary = "Queue wrapper of DispatchQueue"

spec.source = { :git => "git@github.com:NikSativa/NQueue.git" }
Expand Down
2 changes: 1 addition & 1 deletion NQueueTestHelpers.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "NQueueTestHelpers"
spec.version = "1.1.10"
spec.version = "1.1.14"
spec.summary = "Queue wrapper of DispatchQueue"

spec.source = { :git => "git@github.com:NikSativa/NQueue.git" }
Expand Down
16 changes: 8 additions & 8 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -15,35 +15,35 @@
"repositoryURL": "https://github.com/mattgallagher/CwlPreconditionTesting.git",
"state": {
"branch": null,
"revision": "02b7a39a99c4da27abe03cab2053a9034379639f",
"version": "2.0.0"
"revision": "c21f7bab5ca8eee0a9998bbd17ca1d0eb45d4688",
"version": "2.1.0"
}
},
{
"package": "Nimble",
"repositoryURL": "https://github.com/Quick/Nimble.git",
"state": {
"branch": null,
"revision": "af1730dde4e6c0d45bf01b99f8a41713ce536790",
"version": "9.2.0"
"revision": "1f3bde57bde12f5e7b07909848c071e9b73d6edc",
"version": "10.0.0"
}
},
{
"package": "NSpry",
"repositoryURL": "https://github.com/NikSativa/NSpry.git",
"state": {
"branch": null,
"revision": "e943c534a021294719266e6ac7f844c5d326c922",
"version": "1.1.3"
"revision": "10ea69ff843c139395f052feb4398dbdce7f25bb",
"version": "1.2.9"
}
},
{
"package": "Quick",
"repositoryURL": "https://github.com/Quick/Quick.git",
"state": {
"branch": null,
"revision": "bd86ca0141e3cfb333546de5a11ede63f0c4a0e6",
"version": "4.0.0"
"revision": "f9d519828bb03dfc8125467d8f7b93131951124c",
"version": "5.0.1"
}
}
]
Expand Down
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ let package = Package(
.library(name: "NQueueTestHelpers", targets: ["NQueueTestHelpers"])
],
dependencies: [
.package(url: "https://github.com/NikSativa/NSpry.git", .upToNextMajor(from: "1.1.3")),
.package(url: "https://github.com/Quick/Quick.git", .upToNextMajor(from: "4.0.0")),
.package(url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "9.2.0"))
.package(url: "https://github.com/NikSativa/NSpry.git", .upToNextMajor(from: "1.2.9")),
.package(url: "https://github.com/Quick/Quick.git", .upToNextMajor(from: "5.0.1")),
.package(url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "10.0.0"))
],
targets: [
.target(name: "NQueue",
Expand Down

0 comments on commit 3d4ccb9

Please sign in to comment.