Skip to content

Commit

Permalink
Merge pull request #96 from yaslab/release-2.4.2
Browse files Browse the repository at this point in the history
Release 2.4.2
  • Loading branch information
yaslab authored Jul 13, 2019
2 parents 1a2aebf + 58fee7b commit 67c5209
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
30 changes: 15 additions & 15 deletions CSV.swift.podspec
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
Pod::Spec.new do |s|
s.name = 'CSV.swift'
s.version = '2.4.1'
s.license = 'MIT'
s.summary = 'CSV reading and writing library written in Swift.'
s.homepage = 'https://github.com/yaslab/CSV.swift'
s.authors = { 'Yasuhiro Hatta' => '[email protected]' }
s.source = { :git => 'https://github.com/yaslab/CSV.swift.git', :tag => s.version }
Pod::Spec.new do |spec|
spec.name = 'CSV.swift'
spec.version = '2.4.2'
spec.license = { :type => 'MIT' }
spec.homepage = 'https://github.com/yaslab/CSV.swift'
spec.authors = { 'Yasuhiro Hatta' => '[email protected]' }
spec.summary = 'CSV reading and writing library written in Swift.'
spec.source = { :git => 'https://github.com/yaslab/CSV.swift.git', :tag => spec.version }
spec.source_files = 'Sources/CSV/*.swift'

s.osx.deployment_target = '10.9'
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
spec.ios.deployment_target = '8.0'
spec.tvos.deployment_target = '9.0'
spec.watchos.deployment_target = '2.0'
spec.osx.deployment_target = '10.9'

s.module_name = 'CSV'
s.swift_version = '5.0'
s.source_files = 'Sources/CSV/*.swift'
spec.module_name = 'CSV'
spec.swift_version = '5.0'
end
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,19 +170,19 @@ csv.stream.close()
### CocoaPods

```ruby
pod 'CSV.swift', '~> 2.4.1'
pod 'CSV.swift', '~> 2.4.2'
```

### Carthage

```
github "yaslab/CSV.swift" ~> 2.4.1
github "yaslab/CSV.swift" ~> 2.4.2
```

### Swift Package Manager

```swift
.package(url: "https://github.com/yaslab/CSV.swift.git", .upToNextMinor(from: "2.4.1"))
.package(url: "https://github.com/yaslab/CSV.swift.git", .upToNextMinor(from: "2.4.2"))
```

## Reference specification
Expand Down
2 changes: 1 addition & 1 deletion Sources/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>2.4.1</string>
<string>2.4.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 67c5209

Please sign in to comment.