Skip to content

Commit 1c2aaef

Browse files
authored
Merge pull request WenchaoD#298 from brennobemoura/master
Fix iOS minimum version and increased Swift tools version
2 parents fba5e9e + 977ac1f commit 1c2aaef

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

FSPagerView.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ Pod::Spec.new do |s|
1111
s.source = { :git => "https://github.com/WenchaoD/FSPagerView.git", :tag => s.version.to_s }
1212

1313
s.platform = :ios
14-
s.ios.deployment_target = '8.0'
14+
s.ios.deployment_target = '9.0'
1515
s.requires_arc = true
1616
s.framework = 'UIKit'
1717
s.source_files = 'Sources/*.{swift,h,m}'
18-
s.swift_version = '5.0'
18+
s.swift_version = '5.3'
1919
s.cocoapods_version = '>= 1.4.0'
2020

2121
end

Package.swift

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
// swift-tools-version:5.1
1+
// swift-tools-version:5.3
22
import PackageDescription
33

44
let package = Package(
55
name: "FSPagerView",
6-
platforms: [.iOS(.v8)],
6+
platforms: [.iOS(.v9)],
77
products: [
88
.library(name: "FSPagerView", targets: ["FSPagerView"]),
99
],
1010
targets: [
1111
.target(name: "FSPagerView", path: "Sources", exclude: ["FSPagerViewObjcCompat.h", "FSPagerViewObjcCompat.m"]),
12-
],
13-
swiftLanguageVersions: [.v5]
12+
]
1413
)

0 commit comments

Comments
 (0)