Skip to content

Commit

Permalink
fix: 🐛 use FioriSwiftUI package with version-based requirement
Browse files Browse the repository at this point in the history
It was not possible to specify dependency for `FioriSwiftUI` package
with `upToNextMajor(from:)` or `upToNextMinor(from:)` due to the use of
commit-based requirement for Zip dependency. Switching to a stable fork
in Package.swift will fix that.
  • Loading branch information
MarcoEidinger committed Dec 13, 2021
1 parent af6f5dd commit 3eb1bc7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
},
{
"package": "Zip",
"repositoryURL": "https://github.com/maparoni/Zip.git",
"repositoryURL": "https://github.com/MarcoEidinger/Zip.git",
"state": {
"branch": null,
"revision": "059e7346082d02de16220cd79df7db18ddeba8c3",
"version": null
"version": "2.1.2"
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ let package = Package(
// Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/Flight-School/AnyCodable.git", from: "0.2.3"),
.package(name: "ObservableArray", url: "https://github.com/sstadelman/observable-array.git", from: "1.2.0"),
.package(url: "https://github.com/maparoni/Zip.git", .revision("059e7346082d02de16220cd79df7db18ddeba8c3"))
.package(url: "https://github.com/MarcoEidinger/Zip.git", .upToNextMinor(from: "2.1.2"))
],
targets: [
.target(
Expand Down

0 comments on commit 3eb1bc7

Please sign in to comment.