-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump build & version and Swift 5 support
- Loading branch information
1 parent
bbf945f
commit c6b018a
Showing
3 changed files
with
11 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,20 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "SwiftCSV" | ||
s.version = "0.4.0" | ||
s.version = "0.5.0" | ||
s.summary = "CSV parser for Swift" | ||
s.homepage = "https://github.com/naoty/SwiftCSV" | ||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
s.author = { "Naoto Kaneko" => "[email protected]" } | ||
s.author = { | ||
"Naoto Kaneko" => "[email protected]", | ||
"Christian Tietze" => "[email protected]" | ||
} | ||
s.source = { :git => "https://github.com/swiftcsv/SwiftCSV.git", :tag => s.version } | ||
s.swift_versions = ["4.2"] | ||
s.swift_versions = [ "5.0", "4.2" ] | ||
|
||
s.ios.deployment_target = "8.0" | ||
s.osx.deployment_target = "10.9" | ||
s.tvos.deployment_target = "9.2" | ||
s.watchos.deployment_target = "2.2" | ||
|
||
s.source_files = "SwiftCSV/**/*.swift" | ||
s.requires_arc = true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters