diff --git a/Examples/RefresherTest.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Examples/RefresherTest.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 8401e83..230cee0 100644 --- a/Examples/RefresherTest.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/Examples/RefresherTest.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -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" } } ], diff --git a/Package.resolved b/Package.resolved index 778d5db..230cee0 100644 --- a/Package.resolved +++ b/Package.resolved @@ -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 } diff --git a/Package.swift b/Package.swift index 9c57711..c4050ff 100644 --- a/Package.swift +++ b/Package.swift @@ -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. diff --git a/Package@swift-5.8.swift b/Package@swift-5.8.swift index 9e4d11a..2097d13 100644 --- a/Package@swift-5.8.swift +++ b/Package@swift-5.8.swift @@ -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. @@ -26,7 +27,10 @@ let package = Package( dependencies: [ .product( name: "SwiftUIIntrospect", - package: "SwiftUI-Introspect") + package: "SwiftUI-Introspect"), + .product( + name: "RenderLock", + package: "SwiftUI-RenderLock") ] ), ]