Skip to content

Commit f90ab7d

Browse files
author
Wenchao Ding
authored
Merge pull request #379 from esikmalazman/swift-5
Fix add dependencies via SPM error by explicit state the swift lang version
2 parents 968f0aa + 38311f3 commit f90ab7d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Package.swift

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
// swift-tools-version:5.5
1+
// swift-tools-version:5.9
22
import PackageDescription
33

44
let package = Package(
55
name: "FSPagerView",
66
platforms: [
7-
.iOS(.v9)
7+
.iOS(.v12)
88
],
99
products: [
1010
.library(name: "FSPagerView", targets: ["FSPagerView"]),
1111
],
1212
targets: [
1313
.target(name: "FSPagerView", path: "Sources", exclude: ["FSPagerViewObjcCompat.h", "FSPagerViewObjcCompat.m"]),
14-
]
14+
],
15+
swiftLanguageVersions: [.v5]
1516
)

0 commit comments

Comments
 (0)