Merge pull request #331 from jagbryrmiginte/develop

Fixes #328 by specifying platform requirements in Package.swift
This commit is contained in:
John Estropia
2019-09-14 01:34:35 -04:00
committed by GitHub

View File

@@ -1,4 +1,4 @@
// swift-tools-version:4.2
// swift-tools-version:5.0
//
// Package.swift
// CoreStore
@@ -28,6 +28,9 @@ import PackageDescription
let package = Package(
name: "CoreStore",
platforms: [
.macOS(.v10_12), .iOS(.v10), .tvOS(.v10), .watchOS(.v3)
],
products: [
.library(name: "CoreStore", type: .static, targets: ["CoreStore"])
],