From 6937f36e1702d60c658a55ddc397c61f600ca12a Mon Sep 17 00:00:00 2001 From: David Roman <2538074+davdroman@users.noreply.github.com> Date: Tue, 8 Jul 2025 15:14:22 +0100 Subject: [PATCH 1/2] WIP --- Package.swift | 2 +- Package@swift-6.0.swift | 23 ----------------------- 2 files changed, 1 insertion(+), 24 deletions(-) delete mode 100644 Package@swift-6.0.swift diff --git a/Package.swift b/Package.swift index c19540ef6..f7084dbd2 100644 --- a/Package.swift +++ b/Package.swift @@ -1,4 +1,4 @@ -// swift-tools-version:5.7 +// swift-tools-version:6.0 import PackageDescription diff --git a/Package@swift-6.0.swift b/Package@swift-6.0.swift deleted file mode 100644 index f7084dbd2..000000000 --- a/Package@swift-6.0.swift +++ /dev/null @@ -1,23 +0,0 @@ -// swift-tools-version:6.0 - -import PackageDescription - -let package = Package( - name: "swiftui-introspect", - platforms: [ - .iOS(.v13), - .tvOS(.v13), - .macOS(.v10_15), - ], - products: [ - .library(name: "SwiftUIIntrospect", targets: ["SwiftUIIntrospect"]), - .library(name: "SwiftUIIntrospect-Static", type: .static, targets: ["SwiftUIIntrospect"]), - .library(name: "SwiftUIIntrospect-Dynamic", type: .dynamic, targets: ["SwiftUIIntrospect"]), - ], - targets: [ - .target( - name: "SwiftUIIntrospect", - path: "Sources" - ), - ] -) From 1262cb7171335beb12f57020536f8a0099edb53e Mon Sep 17 00:00:00 2001 From: David Roman <2538074+davdroman@users.noreply.github.com> Date: Tue, 8 Jul 2025 15:23:39 +0100 Subject: [PATCH 2/2] WIP --- .github/workflows/ci.yml | 4 ++-- SwiftUIIntrospect.podspec | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b06f97b4..2d807a0b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ concurrency: jobs: lint-podspec: name: Lint Podspec - runs-on: macos-14 + runs-on: macos-15 steps: - name: Git Checkout uses: actions/checkout@v4 @@ -30,7 +30,7 @@ jobs: +: pod xcodes - name: Select Xcode version - run: sudo xcodes select 15.4 + run: sudo xcodes select 16.4 - name: Lint Podspec run: | diff --git a/SwiftUIIntrospect.podspec b/SwiftUIIntrospect.podspec index b64d66cde..c27ee8469 100644 --- a/SwiftUIIntrospect.podspec +++ b/SwiftUIIntrospect.podspec @@ -12,7 +12,7 @@ Pod::Spec.new do |spec| spec.source_files = 'Sources/**/*.swift' - spec.swift_version = '5.7' + spec.swift_version = '6.0' spec.ios.deployment_target = '13.0' spec.tvos.deployment_target = '13.0' spec.osx.deployment_target = '10.15'