Skip to content

Commit 2d14230

Browse files
committed
Fix platforms clause
1 parent 4c1bb29 commit 2d14230

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ import PackageDescription
1919
let package = Package(
2020
name: "SemanticVersion",
2121
platforms: [
22-
.iOS(.v16),
23-
.macOS(.v13),
24-
.watchOS(.v9),
25-
.tvOS(.v16),
22+
.iOS("16.0"),
23+
.macOS("13.0"),
24+
.watchOS("9.0"),
25+
.tvOS("16.0"),
2626
],
2727
products: [
2828
.library(

0 commit comments

Comments
 (0)