Skip to content

Commit 496ee1c

Browse files
authored
Merge pull request #37 from vincentisambart/arm64-mac
Support for ARM64 Macs
2 parents 581b4f8 + 444ad0c commit 496ee1c

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "ra1028/DifferenceKit" ~> 1.1
1+
github "ra1028/DifferenceKit" ~> 1.2

Cartfile.resolved

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "ra1028/DifferenceKit" "1.1.4"
1+
github "ra1028/DifferenceKit" "1.2.0"

Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ let package = Package(
1111
.library(name: "DiffableDataSources", targets: ["DiffableDataSources"])
1212
],
1313
dependencies: [
14-
.package(url: "https://github.com/ra1028/DifferenceKit.git", .upToNextMinor(from: "1.1.0"))
14+
.package(url: "https://github.com/ra1028/DifferenceKit.git", .upToNextMinor(from: "1.2.0"))
1515
],
1616
targets: [
1717
.target(

XCConfigs/DiffableDataSources.xcconfig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ TVOS_DEPLOYMENT_TARGET = 9.0
55
SDKROOT =
66
SUPPORTED_PLATFORMS = macosx iphoneos iphonesimulator appletvos appletvsimulator
77
TARGETED_DEVICE_FAMILY = 1,2,3
8-
VALID_ARCHS[sdk=macosx*] = i386 x86_64
8+
VALID_ARCHS[sdk=macosx*] = arm64 i386 x86_64
99
VALID_ARCHS[sdk=iphoneos*] = arm64 armv7 armv7s
10-
VALID_ARCHS[sdk=iphonesimulator*] = i386 x86_64
10+
VALID_ARCHS[sdk=iphonesimulator*] = arm64 i386 x86_64
1111
VALID_ARCHS[sdk=appletv*] = arm64
12-
VALID_ARCHS[sdk=appletvsimulator*] = x86_64
12+
VALID_ARCHS[sdk=appletvsimulator*] = arm64 x86_64
1313

1414
CODE_SIGN_IDENTITY =
1515
CODE_SIGN_STYLE = Manual

0 commit comments

Comments
 (0)