Skip to content

Commit

Permalink
bump deployment targets
Browse files Browse the repository at this point in the history
  • Loading branch information
DivineDominion committed Sep 28, 2023
1 parent 367f9d0 commit da914cb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import PackageDescription
let package = Package(
name: "SwiftCSV",
platforms: [
.macOS("10.10"), .iOS("9.0"), .tvOS("9.2"), .watchOS("2.2")
.macOS("10.13"), .iOS("11.0"), .tvOS("11.0"), .watchOS("4.0")
],
products: [
.library(
Expand Down
10 changes: 5 additions & 5 deletions SwiftCSV.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ Pod::Spec.new do |s|
"Christian Tietze" => "[email protected]"
}
s.source = { :git => "https://github.com/swiftcsv/SwiftCSV.git", :tag => s.version }
s.swift_versions = [ "5.6", "5.5", "5.4", "5.3", "5.2", "5.1", "5.0", "4.2" ]
s.swift_versions = [ "5.9", "5.8", "5.7", "5.6", "5.5", "5.4", "5.3", "5.2", "5.1", "5.0", "4.2" ]

s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.9"
s.tvos.deployment_target = "9.2"
s.watchos.deployment_target = "2.2"
s.ios.deployment_target = "11.0"
s.osx.deployment_target = "10.13"
s.tvos.deployment_target = "11.0"
s.watchos.deployment_target = "4.0"

s.source_files = "SwiftCSV/**/*.swift"
s.requires_arc = true
Expand Down

0 comments on commit da914cb

Please sign in to comment.