Skip to content

Commit 29b9b5f

Browse files
committed
Update the package with versions.
1 parent a8685af commit 29b9b5f

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Package.swift

+8-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,17 @@ import PackageDescription
33

44
let package = Package(
55
name: "Stella",
6+
platforms: [
7+
.macOS(.v10_10),
8+
.iOS(.v9),
9+
.tvOS(.v9)
10+
],
611
products: [
712
.library(name: "Stella", targets: ["Stella"])
813
],
914
dependencies: [],
1015
targets: [
11-
.target(name: "Stella", dependencies: [], path: "Sources")
12-
]
16+
.target(name: "Stella", dependencies: [], path: "Sources")
17+
],
18+
swiftLanguageVersions: [.v4_2]
1319
)

0 commit comments

Comments
 (0)