Skip to content

Commit

Permalink
Merge pull request #21 from Econa77/fix-xcode14
Browse files Browse the repository at this point in the history
Fixed the build issue with Xcode 14
  • Loading branch information
gh123man authored Oct 19, 2023
2 parents 78fd130 + 047d195 commit 3349c07
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/gh123man/SwiftUI-RenderLock",
"state" : {
"revision" : "122050e7a84febbb3e7959f9fcfa25783c6abbfb",
"version" : "1.0.1"
"revision" : "11ca0d472dad0053cb8b29701ea3f108b9aa2304",
"version" : "1.0.2"
}
}
],
Expand Down
33 changes: 20 additions & 13 deletions Package.resolved
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
{
"object": {
"pins": [
{
"package": "Introspect",
"repositoryURL": "https://github.com/siteline/SwiftUI-Introspect.git",
"state": {
"branch": null,
"revision": "f2616860a41f9d9932da412a8978fec79c06fe24",
"version": "0.1.4"
}
"pins" : [
{
"identity" : "swiftui-introspect",
"kind" : "remoteSourceControl",
"location" : "https://github.com/siteline/SwiftUI-Introspect.git",
"state" : {
"revision" : "3ced72fccb284235c266c1e8a32f1bf93129fc74",
"version" : "1.1.0"
}
]
},
"version": 1
},
{
"identity" : "swiftui-renderlock",
"kind" : "remoteSourceControl",
"location" : "https://github.com/gh123man/SwiftUI-RenderLock",
"state" : {
"revision" : "11ca0d472dad0053cb8b29701ea3f108b9aa2304",
"version" : "1.0.2"
}
}
],
"version" : 2
}
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ let package = Package(
dependencies: [
// Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/siteline/SwiftUI-Introspect.git", from: "1.0.0"),
.package(url: "https://github.com/gh123man/SwiftUI-RenderLock", from: "1.0.1"),
.package(url: "https://github.com/gh123man/SwiftUI-RenderLock", from: "1.0.2"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
Expand Down
6 changes: 5 additions & 1 deletion [email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ let package = Package(
dependencies: [
// Dependencies declare other packages that this package depends on.
.package(url: "https://github.com/siteline/SwiftUI-Introspect.git", from: "1.0.0"),
.package(url: "https://github.com/gh123man/SwiftUI-RenderLock", from: "1.0.2"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
Expand All @@ -26,7 +27,10 @@ let package = Package(
dependencies: [
.product(
name: "SwiftUIIntrospect",
package: "SwiftUI-Introspect")
package: "SwiftUI-Introspect"),
.product(
name: "RenderLock",
package: "SwiftUI-RenderLock")
]
),
]
Expand Down

0 comments on commit 3349c07

Please sign in to comment.