From 39423a15adf98da91731acc92213a8d290cf71b2 Mon Sep 17 00:00:00 2001 From: Rafael Francisco Date: Tue, 26 May 2020 15:05:41 +0100 Subject: [PATCH] Add watchOS minimum version Without specifying the minimum version for watchOS it's failing to compile. --- Package.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Package.swift b/Package.swift index 4ca635c..6254afb 100644 --- a/Package.swift +++ b/Package.swift @@ -6,7 +6,7 @@ import PackageDescription let package = Package( name: "Shapes", platforms: [ - .iOS(.v13), .macOS(.v10_15) + .iOS(.v13), .macOS(.v10_15), .watchOS(.v6) ], products: [ // Products define the executables and libraries produced by a package, and make them visible to other packages.