From 767d97cb42b325a84010cc64d674aafdffdb0862 Mon Sep 17 00:00:00 2001 From: Marcus Wu Date: Fri, 10 May 2024 11:15:25 +0800 Subject: [PATCH 1/2] Support Swift Package Manager install --- .../contents.xcworkspacedata | 7 +++++++ Package.swift | 20 +++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata create mode 100644 Package.swift diff --git a/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000..919434a6 --- /dev/null +++ b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Package.swift b/Package.swift new file mode 100644 index 00000000..53a14e38 --- /dev/null +++ b/Package.swift @@ -0,0 +1,20 @@ +// swift-tools-version:5.9 +import PackageDescription + +let package = Package( + name: "SpreadsheetView", + platforms: [ + .iOS(.v12), + ], + products: [ + .library( + name: "SpreadsheetView", + targets: ["SpreadsheetView"]), + ], + targets: [ + .target( + name: "SpreadsheetView", + path: "Framework/Sources" + ) + ] +) From 780c7c3c992fd64f3184a07870484813cca5fb4b Mon Sep 17 00:00:00 2001 From: Marcus Wu Date: Fri, 10 May 2024 15:06:12 +0800 Subject: [PATCH 2/2] Bump CI simulator version --- scripts/travis_ci.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/travis_ci.rb b/scripts/travis_ci.rb index 6e206bbb..4ef41f3e 100755 --- a/scripts/travis_ci.rb +++ b/scripts/travis_ci.rb @@ -3,7 +3,7 @@ class Binder # You can confrim new device via `xcrun xctrace list devices` def latest_os - '14.0' + '17.0' end def devices