Skip to content

Commit dfab374

Browse files
authored
fix SpeziStudy dependency (#30)
# fix SpeziStudy dependency ## ♻️ Current situation & Problem version requirement was too relaxed ## ⚙️ Release Notes - fix SpeziStudy dependency ## 📚 Documentation n/a ## ✅ Testing n/a ### Code of Conduct & Contributing Guidelines By creating and submitting this pull request, you agree to follow our [Code of Conduct](https://github.com/StanfordBDHG/.github/blob/main/CODE_OF_CONDUCT.md) and [Contributing Guidelines](https://github.com/StanfordBDHG/.github/blob/main/CONTRIBUTING.md): - [x] I agree to follow the [Code of Conduct](https://github.com/StanfordBDHG/.github/blob/main/CODE_OF_CONDUCT.md) and [Contributing Guidelines](https://github.com/StanfordBDHG/.github/blob/main/CONTRIBUTING.md).
1 parent a84f12d commit dfab374

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

Package.swift

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,11 @@ let package = Package(
2727
.executable(name: "MHCStudyDefinitionExporterCLI", targets: ["MHCStudyDefinitionExporterCLI"])
2828
],
2929
dependencies: [
30-
.package(url: "https://github.com/StanfordSpezi/SpeziStudy.git", from: "0.1.19"),
30+
.package(url: "https://github.com/StanfordSpezi/SpeziStudy.git", .upToNextMinor(from: "0.1.19")),
3131
.package(url: "https://github.com/StanfordSpezi/SpeziFoundation.git", from: "2.4.0"),
32-
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.6.2")
32+
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.6.2"),
33+
// not used directly but we need to fix it below 0.9.0 for the time being
34+
.package(url: "https://github.com/apple/FHIRModels.git", .upToNextMinor(from: "0.8.0"))
3335
],
3436
targets: [
3537
.target(

0 commit comments

Comments
 (0)