Skip to content

Commit

Permalink
changes + official version 4
Browse files Browse the repository at this point in the history
  • Loading branch information
cogsandsquigs committed Aug 3, 2023
1 parent 619ee41 commit bf9bb74
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
license = "MIT"
readme = "README.md"
repository = "https://github.com/cogsandsquigs/nand7400"
version = "0.4.0-alpha.1"
version = "0.4.0"
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ let package = Package(
),
.binaryTarget(
name: "Nand7400FFI",
url: "https://github.com/cogsandsquigs/nand7400/releases/download/v0.4.0-alpha.1/Nand7400FFI.xcframework.zip",
url: "https://github.com/cogsandsquigs/nand7400/releases/download/v0.4.0/Nand7400FFI.xcframework.zip",
checksum: "7fae397668dca8735e73cec9a6a4decd0cdbf368c626e1e31a097934223d38b5"
),
// .binaryTarget(
Expand Down
Binary file modified nand7400/examples/swift_and_xcode/.DS_Store
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
objects = {

/* Begin PBXBuildFile section */
844BF0F42A7C6F3D00002E69 /* Nand7400 in Frameworks */ = {isa = PBXBuildFile; productRef = 844BF0F32A7C6F3D00002E69 /* Nand7400 */; };
844BF0F82A7C715100002E69 /* Nand7400 in Frameworks */ = {isa = PBXBuildFile; productRef = 844BF0F72A7C715100002E69 /* Nand7400 */; };
849C7CD12A57406D002E8A21 /* ExampleApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 849C7CD02A57406D002E8A21 /* ExampleApp.swift */; };
849C7CD32A57406D002E8A21 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 849C7CD22A57406D002E8A21 /* ContentView.swift */; };
849C7CD52A57406F002E8A21 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 849C7CD42A57406F002E8A21 /* Assets.xcassets */; };
Expand All @@ -20,7 +20,6 @@
849C7CD22A57406D002E8A21 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = "<group>"; };
849C7CD42A57406F002E8A21 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
849C7CD72A57406F002E8A21 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = "<group>"; };
84E6F7332A7C68F1004C6DE6 /* nand7400 */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = nand7400; path = ../../..; sourceTree = "<group>"; };
84E80EA52A5D8FD50047D0F1 /* Nand7400FFI.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = Nand7400FFI.xcframework; path = ../../../target/Nand7400FFI.xcframework; sourceTree = "<group>"; };
/* End PBXFileReference section */

Expand All @@ -29,7 +28,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
844BF0F42A7C6F3D00002E69 /* Nand7400 in Frameworks */,
844BF0F82A7C715100002E69 /* Nand7400 in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -84,7 +83,6 @@
84E80EA12A5D8EB00047D0F1 /* Packages */ = {
isa = PBXGroup;
children = (
84E6F7332A7C68F1004C6DE6 /* nand7400 */,
);
name = Packages;
sourceTree = "<group>";
Expand All @@ -106,7 +104,7 @@
);
name = Example;
packageProductDependencies = (
844BF0F32A7C6F3D00002E69 /* Nand7400 */,
844BF0F72A7C715100002E69 /* Nand7400 */,
);
productName = Example;
productReference = 849C7CCD2A57406C002E8A21 /* Example.app */;
Expand Down Expand Up @@ -137,6 +135,7 @@
);
mainGroup = 849C7CC42A57406C002E8A21;
packageReferences = (
844BF0F62A7C715100002E69 /* XCRemoteSwiftPackageReference "nand7400" */,
);
productRefGroup = 849C7CCE2A57406C002E8A21 /* Products */;
projectDirPath = "";
Expand Down Expand Up @@ -379,9 +378,21 @@
};
/* End XCConfigurationList section */

/* Begin XCRemoteSwiftPackageReference section */
844BF0F62A7C715100002E69 /* XCRemoteSwiftPackageReference "nand7400" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/cogsandsquigs/nand7400";
requirement = {
kind = revision;
revision = 619ee41aabdf6448ab2f89b219a3a3337092db88;
};
};
/* End XCRemoteSwiftPackageReference section */

/* Begin XCSwiftPackageProductDependency section */
844BF0F32A7C6F3D00002E69 /* Nand7400 */ = {
844BF0F72A7C715100002E69 /* Nand7400 */ = {
isa = XCSwiftPackageProductDependency;
package = 844BF0F62A7C715100002E69 /* XCRemoteSwiftPackageReference "nand7400" */;
productName = Nand7400;
};
/* End XCSwiftPackageProductDependency section */
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"pins" : [
{
"identity" : "nand7400",
"kind" : "remoteSourceControl",
"location" : "https://github.com/cogsandsquigs/nand7400",
"state" : {
"revision" : "619ee41aabdf6448ab2f89b219a3a3337092db88"
}
}
],
"version" : 2
}

0 comments on commit bf9bb74

Please sign in to comment.