Skip to content

Commit e9214c5

Browse files
authored
feat: reducing required swift version (#8)
- reduces swift required to build this package to Swift 5.6 - reduces macOS support back to allow/support Catalina (10.15) - adds explicit iOS and watchOS support
2 parents c25b10b + 63caea1 commit e9214c5

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Package.swift

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version: 5.7
1+
// swift-tools-version: 5.6
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
import PackageDescription
@@ -8,7 +8,10 @@ let package = Package(
88
platforms: [
99
// specify each minimum deployment requirement,
1010
//otherwise the platform default minimum is used.
11-
.macOS(.v11),
11+
.macOS(.v10_15),
12+
.iOS(.v13),
13+
.tvOS(.v13),
14+
.watchOS(.v6)
1215
],
1316
products: [
1417
// Products define the executables and libraries a package produces, and make them visible to other packages.

0 commit comments

Comments
 (0)