diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b06f97b..2d807a0b 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/Package.swift b/Package.swift index c19540ef..f7084dbd 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 f7084dbd..00000000 --- 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" - ), - ] -) diff --git a/SwiftUIIntrospect.podspec b/SwiftUIIntrospect.podspec index b64d66cd..c27ee846 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'