Skip to content

Commit

Permalink
Update nimble
Browse files Browse the repository at this point in the history
  • Loading branch information
qvacua committed Dec 24, 2020
1 parent 836b454 commit e6c0e54
Show file tree
Hide file tree
Showing 7 changed files with 139 additions and 83 deletions.
2 changes: 1 addition & 1 deletion Commons/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ let package = Package(
.library(name: "Commons", targets: ["Commons", "CommonsObjC"]),
],
dependencies: [
.package(url: "https://github.com/Quick/Nimble", .upToNextMinor(from: "8.1.1")),
.package(url: "https://github.com/Quick/Nimble", .upToNextMinor(from: "9.0.0")),
],
targets: [
.target(name: "Commons", dependencies: []),
Expand Down
2 changes: 1 addition & 1 deletion NvimView/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let package = Package(
.upToNextMinor(from: "4.0.0")
),
.package(url: "https://github.com/ReactiveX/RxSwift", .upToNextMinor(from: "5.1.1")),
.package(url: "https://github.com/Quick/Nimble", .upToNextMinor(from: "8.1.1")),
.package(url: "https://github.com/Quick/Nimble", .upToNextMinor(from: "9.0.0")),
.package(name: "NvimServer", path: "../NvimServer"),
.package(name: "RxPack", path: "../RxPack"),
.package(name: "Commons", path: "../Commons"),
Expand Down
2 changes: 1 addition & 1 deletion RxPack/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ let package = Package(
url: "https://github.com/IBM-Swift/BlueSocket",
.upToNextMinor(from: "1.0.52")
),
.package(url: "https://github.com/Quick/Nimble", .upToNextMinor(from: "8.1.1")),
.package(url: "https://github.com/Quick/Nimble", .upToNextMinor(from: "9.0.0")),
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion RxPack/Tests/RxPackTests/RxMsgpackRpcTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class RxMsgpackRpcTests: XCTestCase {
super.setUp()

// $ NVIM_LISTEN_ADDRESS=/tmp/nvim.sock nvim --headless $SOMEFILE
self.connection = RxMsgpackRpc()
self.connection = RxMsgpackRpc(queueQos: .default)
self.connection.stream
.subscribe(
onNext: { msg in
Expand Down
22 changes: 20 additions & 2 deletions VimR.xcworkspace/xcshareddata/swiftpm/Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,24 @@
"version": "1.0.52"
}
},
{
"package": "CwlCatchException",
"repositoryURL": "https://github.com/mattgallagher/CwlCatchException.git",
"state": {
"branch": null,
"revision": "f809deb30dc5c9d9b78c872e553261a61177721a",
"version": "2.0.0"
}
},
{
"package": "CwlPreconditionTesting",
"repositoryURL": "https://github.com/mattgallagher/CwlPreconditionTesting.git",
"state": {
"branch": null,
"revision": "02b7a39a99c4da27abe03cab2053a9034379639f",
"version": "2.0.0"
}
},
{
"package": "DictionaryCoding",
"repositoryURL": "https://github.com/elegantchaos/DictionaryCoding",
Expand Down Expand Up @@ -60,8 +78,8 @@
"repositoryURL": "https://github.com/Quick/Nimble",
"state": {
"branch": null,
"revision": "2b1809051b4a65c1d7f5233331daa24572cd7fca",
"version": "8.1.1"
"revision": "e491a6731307bb23783bf664d003be9b2fa59ab5",
"version": "9.0.0"
}
},
{
Expand Down
Loading

0 comments on commit e6c0e54

Please sign in to comment.