From 2797e65776bc914ac0ec662fb9b5be756f95490b Mon Sep 17 00:00:00 2001 From: Yasuhiro Hatta Date: Sat, 13 Jul 2019 15:12:45 +0900 Subject: [PATCH 1/2] Release 2.4.2 --- CSV.swift.podspec | 2 +- README.md | 6 +++--- Sources/Info.plist | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CSV.swift.podspec b/CSV.swift.podspec index 0e07bfa..0a17571 100644 --- a/CSV.swift.podspec +++ b/CSV.swift.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'CSV.swift' - s.version = '2.4.1' + s.version = '2.4.2' s.license = 'MIT' s.summary = 'CSV reading and writing library written in Swift.' s.homepage = 'https://github.com/yaslab/CSV.swift' diff --git a/README.md b/README.md index 1afcbe5..69a45f7 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/Sources/Info.plist b/Sources/Info.plist index 1bc00f1..50d91c8 100644 --- a/Sources/Info.plist +++ b/Sources/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 2.4.1 + 2.4.2 CFBundleSignature ???? CFBundleVersion From 58fee7bcab2840ff72650d171a7f7e941936d97b Mon Sep 17 00:00:00 2001 From: Yasuhiro Hatta Date: Sat, 13 Jul 2019 15:17:25 +0900 Subject: [PATCH 2/2] Update podspec --- CSV.swift.podspec | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/CSV.swift.podspec b/CSV.swift.podspec index 0a17571..cc9289f 100644 --- a/CSV.swift.podspec +++ b/CSV.swift.podspec @@ -1,18 +1,18 @@ -Pod::Spec.new do |s| - s.name = 'CSV.swift' - s.version = '2.4.2' - 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' => 'hatta.yasuhiro@gmail.com' } - 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' => 'hatta.yasuhiro@gmail.com' } + 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