Skip to content

Commit

Permalink
bump build & version and Swift 5 support
Browse files Browse the repository at this point in the history
  • Loading branch information
DivineDominion committed Apr 25, 2019
1 parent bbf945f commit c6b018a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# SwiftCSV

![Swift 5.0](https://img.shields.io/badge/Swift-5.0-blue.svg?style=flat)
[![Platform support](https://img.shields.io/badge/platform-ios%20%7C%20osx%20%7C%20tvos%20%7C%20watchos-lightgrey.svg?style=flat-square)](https://github.com/swiftcsv/SwiftCSV/blob/master/LICENSE.md)
[![Build Status](https://img.shields.io/travis/swiftcsv/SwiftCSV/master.svg?style=flat-square)](https://travis-ci.org/swiftcsv/SwiftCSV)
[![Code coverage status](https://img.shields.io/codecov/c/github/swiftcsv/SwiftCSV.svg?style=flat-square)](http://codecov.io/github/swiftcsv/SwiftCSV)
[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/SwiftCSV.svg?style=flat-square)](https://cocoapods.org/pods/SwiftCSV)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
[![Platform support](https://img.shields.io/badge/platform-ios%20%7C%20osx%20%7C%20tvos%20%7C%20watchos-lightgrey.svg?style=flat-square)](https://github.com/swiftcsv/SwiftCSV/blob/master/LICENSE.md)
[![License MIT](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://github.com/swiftcsv/SwiftCSV/blob/master/LICENSE.md)
[![Reviewed by Hound](https://img.shields.io/badge/Reviewed_by-Hound-8E64B0.svg?style=flat-square)](https://houndci.com)

Expand Down
11 changes: 8 additions & 3 deletions SwiftCSV.podspec
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
Expand Down
2 changes: 1 addition & 1 deletion SwiftCSV.xcodeproj/SwiftCSV-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>0.5.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit c6b018a

Please sign in to comment.