Skip to content

Commit 4fc9294

Browse files
committed
Lowered required macOS version to 10.11 for the module by back-porting "CollectionDifference" related methods
Renamed collection difference methods to avoid clashes on macOS 10.15+
1 parent 423cc65 commit 4fc9294

File tree

6 files changed

+832
-28
lines changed

6 files changed

+832
-28
lines changed

Package.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,11 @@ import PackageDescription
33

44
let package = Package(
55
name: "OutlineViewDiffableDataSource",
6-
platforms: [.macOS(.v10_15)],
6+
platforms: [.macOS(.v10_11)],
77
products: [.library(name: "OutlineViewDiffableDataSource", targets: ["OutlineViewDiffableDataSource"])],
8+
dependencies: [
9+
// Dependencies declare other packages that this package depends on.
10+
],
811
targets: [
912
.target(name: "OutlineViewDiffableDataSource", dependencies: [], path: "Sources"),
1013
.testTarget(name: "OutlineViewDiffableDataSourceTests", dependencies: ["OutlineViewDiffableDataSource"], path: "Tests"),

0 commit comments

Comments
 (0)