Skip to content

Commit

Permalink
Merge pull request #9 from schwa/jwight/1.0.0
Browse files Browse the repository at this point in the history
jwight/1.0.0
  • Loading branch information
schwa committed Sep 16, 2023
2 parents 0d38af2 + e3cee84 commit ba0e399
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 19 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,13 @@ on:

jobs:
build:
runs-on: macos-latest

runs-on: macos-13
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 15.0-beta
- uses: actions/checkout@v3
- name: Build
run: swift build -v
# - name: Run tests
# run: swift test -v
# - name: Run tests
# run: swift test -v
8 changes: 4 additions & 4 deletions Demo/SwiftGLTFDemo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -330,10 +330,10 @@
"INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault;
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
IPHONEOS_DEPLOYMENT_TARGET = 16.1;
IPHONEOS_DEPLOYMENT_TARGET = 17.0;
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 13.0;
MACOSX_DEPLOYMENT_TARGET = 14;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = io.schwa.SwiftGLTFDemo;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down Expand Up @@ -370,10 +370,10 @@
"INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault;
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
IPHONEOS_DEPLOYMENT_TARGET = 16.1;
IPHONEOS_DEPLOYMENT_TARGET = 17.0;
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 13.0;
MACOSX_DEPLOYMENT_TARGET = 14;
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = io.schwa.SwiftGLTFDemo;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/schwa/SIMD-Support",
"state" : {
"revision" : "a7d1f9585c56f27494599b82ca51fb2cf2d0eb57",
"version" : "0.1.1"
"revision" : "b163c8951dca3089d69f4bcc3febe60d178965ac",
"version" : "0.2.1"
}
},
{
Expand Down
8 changes: 4 additions & 4 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/schwa/Everything",
"state" : {
"revision" : "ae84a2ffad8597146deed736cef40966b8570f00",
"version" : "0.1.2"
"revision" : "e4f51ca5cc860bc83b99380f9f56ed07e2c3b81d",
"version" : "0.5.0"
}
},
{
"identity" : "simd-support",
"kind" : "remoteSourceControl",
"location" : "https://github.com/schwa/SIMD-Support",
"state" : {
"revision" : "9ff9b201a508ae79006a8d2ac78716dc7a83123c",
"version" : "0.2.0"
"revision" : "b163c8951dca3089d69f4bcc3febe60d178965ac",
"version" : "0.2.1"
}
},
{
Expand Down
10 changes: 5 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import PackageDescription
let package = Package(
name: "SwiftGLTF",
platforms: [
.iOS("15.0"),
.macOS("12.0"),
.macCatalyst("15.0")
.iOS("17.0"),
.macOS("14.0"),
.macCatalyst("17.0")
],
products: [
.library(
Expand All @@ -17,8 +17,8 @@ let package = Package(
),
],
dependencies: [
.package(url: "https://github.com/schwa/Everything", exact: "0.1.2"),
.package(url: "https://github.com/schwa/SIMD-Support", exact: "0.2.0"),
.package(url: "https://github.com/schwa/Everything", from: "0.4.4"),
.package(url: "https://github.com/schwa/SIMD-Support", from: "0.2.1"),
],
targets: [
.target(
Expand Down

0 comments on commit ba0e399

Please sign in to comment.