Skip to content

Commit

Permalink
fix: Bump Swift-async and FHIR dependencies (#21)
Browse files Browse the repository at this point in the history
* fix: Bump Swift-async and FHIR dependencies

* update package files
  • Loading branch information
cbaker6 authored Mar 2, 2025
1 parent 72f1078 commit 41e4a9e
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ jobs:
- name: Set Xcode Version
run: sudo xcode-select -s /Applications/Xcode_16.2.app
- name: Build
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -verbose -workspace CKWorkspace.xcworkspace -scheme ${{ matrix.scheme }} -destination ${{ matrix.destination }} build test 2>&1 | xcbeautify --renderer github-actions
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -verbose -workspace CKWorkspace.xcworkspace -scheme ${{ matrix.scheme }} -destination ${{ matrix.destination }} clean build test 2>&1 | xcbeautify --renderer github-actions
2 changes: 1 addition & 1 deletion .spi.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 1
builder:
configs:
- documentation_targets: ["CareKit", "CareKitUI", "CareKitStore"]
- documentation_targets: ["CareKit", "CareKitUI", "CareKitStore", "CareKitFHIR"]
platform: ios
scheme: "CareKit"
- platform: watchos
Expand Down
2 changes: 1 addition & 1 deletion CareKitFHIR/CareKitFHIR.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@
repositoryURL = "https://github.com/apple/FHIRModels";
requirement = {
kind = exactVersion;
version = 0.5.0;
version = 0.6.1;
};
};
/* End XCRemoteSwiftPackageReference section */
Expand Down
2 changes: 1 addition & 1 deletion CareKitStore/CareKitStore.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1613,7 +1613,7 @@
repositoryURL = "https://github.com/apple/swift-async-algorithms";
requirement = {
kind = exactVersion;
version = 1.0.1;
version = 1.0.3;
};
};
/* End XCRemoteSwiftPackageReference section */
Expand Down
12 changes: 6 additions & 6 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,26 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/FHIRModels.git",
"state" : {
"revision" : "861afd5816a98d38f86220eab2f812d76cad84a0",
"version" : "0.5.0"
"revision" : "ee8b55c245e92389e05b0a56ad2b84d37c1985e5",
"version" : "0.6.1"
}
},
{
"identity" : "swift-async-algorithms",
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-async-algorithms",
"state" : {
"revision" : "6ae9a051f76b81cc668305ceed5b0e0a7fd93d20",
"version" : "1.0.1"
"revision" : "4c3ea81f81f0a25d0470188459c6d4bf20cf2f97",
"version" : "1.0.3"
}
},
{
"identity" : "swift-collections",
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-collections.git",
"state" : {
"revision" : "3d2dc41a01f9e49d84f0a3925fb858bed64f702d",
"version" : "1.1.2"
"revision" : "671108c96644956dddcd89dd59c203dcdb36cec7",
"version" : "1.1.4"
}
}
],
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ let package = Package(
dependencies: [
.package(
url: "https://github.com/apple/FHIRModels.git",
exact: Version(0, 5, 0)
exact: Version(0, 6, 1)
),
.package(
url: "https://github.com/apple/swift-async-algorithms",
exact: Version(1, 0, 1)
exact: Version(1, 0, 3)
)
],
targets: [
Expand Down

0 comments on commit 41e4a9e

Please sign in to comment.