Skip to content

Commit

Permalink
Using PromiseKit 8 (#34)
Browse files Browse the repository at this point in the history
* Using PromiseKit 8
* 8.0 for all configurations
  • Loading branch information
RomanPodymov committed Nov 14, 2023
1 parent 985f17f commit d967438
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/mxcl/PromiseKit.git",
"state": {
"branch": null,
"revision": "44402644d7973879153784b02c0745de32634a35",
"version": "6.15.2"
"revision": "cb70b070cde06837cd10a1febdf6105c1a3bb348",
"version": "8.1.1"
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PackageDescription
let package = Package(
name: "PMKFoundation",
dependencies: [
.Package(url: "https://github.com/mxcl/PromiseKit.git", majorVersion: 6)
.Package(url: "https://github.com/mxcl/PromiseKit.git", majorVersion: 8)
],
swiftLanguageVersions: [3, 4],
exclude: [
Expand Down
2 changes: 1 addition & 1 deletion Package@swift-4.2.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pkg.products = [
.library(name: "PMKFoundation", targets: ["PMKFoundation"]),
]
pkg.dependencies = [
.package(url: "https://github.com/mxcl/PromiseKit.git", .upToNextMajor(from: "6.0.0"))
.package(url: "https://github.com/mxcl/PromiseKit.git", .upToNextMajor(from: "8.0.0"))
]
pkg.swiftLanguageVersions = [.v3, .v4, .v4_2, .version("5")]

Expand Down
2 changes: 1 addition & 1 deletion Package@swift-5.0.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pkg.products = [
.library(name: "PMKFoundation", targets: ["PMKFoundation"]),
]
pkg.dependencies = [
.package(url: "https://github.com/mxcl/PromiseKit.git", from: "6.8.3")
.package(url: "https://github.com/mxcl/PromiseKit.git", from: "8.0.0")
]
pkg.swiftLanguageVersions = [.v4, .v4_2, .v5]

Expand Down
2 changes: 1 addition & 1 deletion Package@swift-5.3.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pkg.products = [
.library(name: "PMKFoundation", targets: ["PMKFoundation"]),
]
pkg.dependencies = [
.package(url: "https://github.com/mxcl/PromiseKit.git", from: "6.8.3")
.package(url: "https://github.com/mxcl/PromiseKit.git", from: "8.0.0")
]
pkg.swiftLanguageVersions = [.v4, .v4_2, .v5]

Expand Down

0 comments on commit d967438

Please sign in to comment.