Skip to content

Commit 6798d05

Browse files
authored
feat: Update all dependencies (#197)
* feat: Update all dependencies * Update project * update packages
1 parent 8cb7c76 commit 6798d05

File tree

5 files changed

+99
-17
lines changed

5 files changed

+99
-17
lines changed

Package.resolved

+10-10
Original file line numberDiff line numberDiff line change
@@ -5,44 +5,44 @@
55
"kind" : "remoteSourceControl",
66
"location" : "https://github.com/cbaker6/CareKit.git",
77
"state" : {
8-
"revision" : "ed05957648de96d7ad8a81bd24edff3ee712f20e",
9-
"version" : "3.0.0-beta.2"
8+
"revision" : "8f84560883c93e57eb92392c49c408d9a7ebf747",
9+
"version" : "3.0.0-beta.14"
1010
}
1111
},
1212
{
1313
"identity" : "fhirmodels",
1414
"kind" : "remoteSourceControl",
1515
"location" : "https://github.com/apple/FHIRModels.git",
1616
"state" : {
17-
"revision" : "e115442fb3c5d44ffb1dc9b4e039b77fd143ad96",
18-
"version" : "0.4.0"
17+
"revision" : "861afd5816a98d38f86220eab2f812d76cad84a0",
18+
"version" : "0.5.0"
1919
}
2020
},
2121
{
2222
"identity" : "parse-swift",
2323
"kind" : "remoteSourceControl",
2424
"location" : "https://github.com/netreconlab/Parse-Swift.git",
2525
"state" : {
26-
"revision" : "fc516a6e48c1c150a0ecac94910bc8dcedfc2e71",
27-
"version" : "5.8.1"
26+
"revision" : "10ec67c29050cc7e9d69bc59dda787ec5a145e75",
27+
"version" : "5.10.0"
2828
}
2929
},
3030
{
3131
"identity" : "swift-async-algorithms",
3232
"kind" : "remoteSourceControl",
3333
"location" : "https://github.com/apple/swift-async-algorithms",
3434
"state" : {
35-
"revision" : "9cfed92b026c524674ed869a4ff2dcfdeedf8a2a",
36-
"version" : "0.1.0"
35+
"revision" : "6ae9a051f76b81cc668305ceed5b0e0a7fd93d20",
36+
"version" : "1.0.1"
3737
}
3838
},
3939
{
4040
"identity" : "swift-collections",
4141
"kind" : "remoteSourceControl",
4242
"location" : "https://github.com/apple/swift-collections.git",
4343
"state" : {
44-
"revision" : "937e904258d22af6e447a0b72c0bc67583ef64a2",
45-
"version" : "1.0.4"
44+
"revision" : "3d2dc41a01f9e49d84f0a3925fb858bed64f702d",
45+
"version" : "1.1.2"
4646
}
4747
}
4848
],

Package.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ let package = Package(
1212
],
1313
dependencies: [
1414
.package(url: "https://github.com/cbaker6/CareKit.git",
15-
.upToNextMajor(from: "3.0.0-beta.2")),
15+
.upToNextMajor(from: "3.0.0-beta.14")),
1616
.package(url: "https://github.com/netreconlab/Parse-Swift.git",
17-
.upToNextMajor(from: "5.8.1"))
17+
.upToNextMajor(from: "5.10.0"))
1818
],
1919
targets: [
2020
.target(

ParseCareKit.xcodeproj/project.pbxproj

+8-4
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@
459459
attributes = {
460460
BuildIndependentTargetsInParallel = YES;
461461
LastSwiftUpdateCheck = 1430;
462-
LastUpgradeCheck = 1430;
462+
LastUpgradeCheck = 1540;
463463
ORGANIZATIONNAME = "Network Reconnaissance Lab";
464464
TargetAttributes = {
465465
705DC91C2526A4B80035BBE3 = {
@@ -691,6 +691,7 @@
691691
CODE_SIGN_ENTITLEMENTS = TestHostAll/TestHostAll.entitlements;
692692
CODE_SIGN_STYLE = Automatic;
693693
CURRENT_PROJECT_VERSION = 1;
694+
DEAD_CODE_STRIPPING = YES;
694695
DEVELOPMENT_ASSET_PATHS = "\"TestHostAll/Preview Content\"";
695696
DEVELOPMENT_TEAM = "";
696697
ENABLE_PREVIEWS = YES;
@@ -729,6 +730,7 @@
729730
CODE_SIGN_ENTITLEMENTS = TestHostAll/TestHostAll.entitlements;
730731
CODE_SIGN_STYLE = Automatic;
731732
CURRENT_PROJECT_VERSION = 1;
733+
DEAD_CODE_STRIPPING = YES;
732734
DEVELOPMENT_ASSET_PATHS = "\"TestHostAll/Preview Content\"";
733735
DEVELOPMENT_TEAM = "";
734736
ENABLE_PREVIEWS = YES;
@@ -796,6 +798,7 @@
796798
DEBUG_INFORMATION_FORMAT = dwarf;
797799
ENABLE_STRICT_OBJC_MSGSEND = YES;
798800
ENABLE_TESTABILITY = YES;
801+
ENABLE_USER_SCRIPT_SANDBOXING = NO;
799802
GCC_C_LANGUAGE_STANDARD = gnu11;
800803
GCC_DYNAMIC_NO_PIC = NO;
801804
GCC_NO_COMMON_BLOCKS = YES;
@@ -862,6 +865,7 @@
862865
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
863866
ENABLE_NS_ASSERTIONS = NO;
864867
ENABLE_STRICT_OBJC_MSGSEND = YES;
868+
ENABLE_USER_SCRIPT_SANDBOXING = NO;
865869
GCC_C_LANGUAGE_STANDARD = gnu11;
866870
GCC_NO_COMMON_BLOCKS = YES;
867871
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
@@ -1008,15 +1012,15 @@
10081012
repositoryURL = "https://github.com/netreconlab/Parse-Swift.git";
10091013
requirement = {
10101014
kind = upToNextMajorVersion;
1011-
minimumVersion = 5.8.1;
1015+
minimumVersion = 5.10.0;
10121016
};
10131017
};
10141018
91FF60492AC0A51100E90E16 /* XCRemoteSwiftPackageReference "CareKit" */ = {
10151019
isa = XCRemoteSwiftPackageReference;
10161020
repositoryURL = "https://github.com/cbaker6/CareKit.git";
10171021
requirement = {
1018-
branch = "3.0.0-beta.2";
1019-
kind = branch;
1022+
kind = upToNextMajorVersion;
1023+
minimumVersion = "3.0.0-beta.14";
10201024
};
10211025
};
10221026
/* End XCRemoteSwiftPackageReference section */

ParseCareKit.xcodeproj/xcshareddata/xcschemes/ParseCareKit.xcscheme

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1430"
3+
LastUpgradeVersion = "1540"
44
version = "1.7">
55
<BuildAction
66
parallelizeBuildables = "YES"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "1540"
4+
version = "1.7">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES"
8+
buildArchitectures = "Automatic">
9+
<BuildActionEntries>
10+
<BuildActionEntry
11+
buildForTesting = "YES"
12+
buildForRunning = "YES"
13+
buildForProfiling = "YES"
14+
buildForArchiving = "YES"
15+
buildForAnalyzing = "YES">
16+
<BuildableReference
17+
BuildableIdentifier = "primary"
18+
BlueprintIdentifier = "708A2CA02A092EE100AAB18A"
19+
BuildableName = "TestHostAll.app"
20+
BlueprintName = "TestHostAll"
21+
ReferencedContainer = "container:ParseCareKit.xcodeproj">
22+
</BuildableReference>
23+
</BuildActionEntry>
24+
</BuildActionEntries>
25+
</BuildAction>
26+
<TestAction
27+
buildConfiguration = "Debug"
28+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
29+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
30+
shouldUseLaunchSchemeArgsEnv = "YES"
31+
shouldAutocreateTestPlan = "YES">
32+
</TestAction>
33+
<LaunchAction
34+
buildConfiguration = "Debug"
35+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
36+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
37+
launchStyle = "0"
38+
useCustomWorkingDirectory = "NO"
39+
ignoresPersistentStateOnLaunch = "NO"
40+
debugDocumentVersioning = "YES"
41+
debugServiceExtension = "internal"
42+
allowLocationSimulation = "YES">
43+
<BuildableProductRunnable
44+
runnableDebuggingMode = "0">
45+
<BuildableReference
46+
BuildableIdentifier = "primary"
47+
BlueprintIdentifier = "708A2CA02A092EE100AAB18A"
48+
BuildableName = "TestHostAll.app"
49+
BlueprintName = "TestHostAll"
50+
ReferencedContainer = "container:ParseCareKit.xcodeproj">
51+
</BuildableReference>
52+
</BuildableProductRunnable>
53+
</LaunchAction>
54+
<ProfileAction
55+
buildConfiguration = "Release"
56+
shouldUseLaunchSchemeArgsEnv = "YES"
57+
savedToolIdentifier = ""
58+
useCustomWorkingDirectory = "NO"
59+
debugDocumentVersioning = "YES">
60+
<BuildableProductRunnable
61+
runnableDebuggingMode = "0">
62+
<BuildableReference
63+
BuildableIdentifier = "primary"
64+
BlueprintIdentifier = "708A2CA02A092EE100AAB18A"
65+
BuildableName = "TestHostAll.app"
66+
BlueprintName = "TestHostAll"
67+
ReferencedContainer = "container:ParseCareKit.xcodeproj">
68+
</BuildableReference>
69+
</BuildableProductRunnable>
70+
</ProfileAction>
71+
<AnalyzeAction
72+
buildConfiguration = "Debug">
73+
</AnalyzeAction>
74+
<ArchiveAction
75+
buildConfiguration = "Release"
76+
revealArchiveInOrganizer = "YES">
77+
</ArchiveAction>
78+
</Scheme>

0 commit comments

Comments
 (0)