Skip to content

Commit 68b70dd

Browse files
committed
Merge branch 'deploy/1.3.1' into productive
2 parents c1474fc + 085294b commit 68b70dd

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

.swift-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0.1

.swiftlint.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
# some rules are only opt-in
21
opt_in_rules:
32
- empty_count
4-
- missing_docs
3+
# - missing_docs
4+
5+
disabled_rules:
6+
- vertical_whitespace # Turn off until configurable to 2 newlines
57

6-
# paths to include during linting. `--path` is ignored if present.
78
included:
89
- Sources
910

10-
# paths to ignore during linting. Takes precedence over `included`.
1111
excluded:
1212
- Carthage
1313
- Sources/Constants
1414

15-
# configurable rules can be customized from this configuration file
16-
line_length: 200
15+
line_length: 200

CSVImporter.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "CSVImporter"
4-
s.version = "1.2.0"
4+
s.version = "1.3.1"
55
s.summary = "Import CSV files line by line with ease."
66

77
s.description = <<-DESC
@@ -24,7 +24,7 @@ Pod::Spec.new do |s|
2424
s.source = { :git => "https://github.com/Flinesoft/CSVImporter.git", :tag => "#{s.version}" }
2525
s.source_files = "Sources", "Sources/**/*.swift"
2626
s.framework = "Foundation"
27-
s.dependency "HandySwift", "~> 1.2"
28-
s.dependency "Dschee-FileKit", "~> 3.0"
27+
s.dependency "HandySwift", "~> 1.3"
28+
s.dependency "FileKit", "~> 4.0"
2929

3030
end

Cartfile.resolved

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
github "nvzqz/FileKit" "29e8c684fdb3018b3fe8ca6b84fe4fb06ef891bf"
22
github "Flinesoft/HandySwift" "1.3.0"
3-
github "Quick/Nimble" "8b71ca345b9b41e3555f87dd904c6f23e4ccdc34"
4-
github "Quick/Quick" "505af8e6f9c85a2e243b36986ee2cf926cda5a7e"
3+
github "Quick/Nimble" "76c4cb3567f3492c00e84a1000ba8622355c8323"
4+
github "Quick/Quick" "8e794df56011c6282f1074e8fd5c113d5f013e63"

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
alt="codebeat badge">
1313
</a>
1414
<a href="https://github.com/Flinesoft/CSVImporter/releases">
15-
<img src="https://img.shields.io/badge/Version-1.2.0-blue.svg"
16-
alt="Version: 1.2.0">
15+
<img src="https://img.shields.io/badge/Version-1.3.1-blue.svg"
16+
alt="Version: 1.3.1">
1717
</a>
18-
<img src="https://img.shields.io/badge/Swift-2.2-FFAC45.svg"
19-
alt="Swift: 2.2">
20-
<img src="https://img.shields.io/badge/Platforms-iOS%20%7C%20tvOS%20%7C%20OS%20X-FF69B4.svg"
21-
alt="Platforms: iOS | tvOS | OS X">
18+
<img src="https://img.shields.io/badge/Swift-3-FFAC45.svg"
19+
alt="Swift: 3">
20+
<img src="https://img.shields.io/badge/Platforms-iOS%20%7C%20tvOS%20%7C%20macOS-FF69B4.svg"
21+
alt="Platforms: iOS | tvOS | macOS">
2222
<a href="https://github.com/Flinesoft/CSVImporter/blob/stable/LICENSE.md">
2323
<img src="https://img.shields.io/badge/License-MIT-lightgrey.svg"
2424
alt="License: MIT">
@@ -56,7 +56,7 @@ You can of course also just include this framework manually into your project by
5656
Simply add this line to your Cartfile:
5757

5858
```
59-
github "Flinesoft/CSVImporter"
59+
github "Flinesoft/CSVImporter" ~> 1.3
6060
```
6161

6262
And run `carthage update`. Then drag & drop the HandySwift.framework in the Carthage/build folder to your project. Also do the same with the dependent frameworks `Filekit` and `HandySwift`. Now you can `import CSVImporter` in each class you want to use its features. Refer to the [Carthage README](https://github.com/Carthage/Carthage#adding-frameworks-to-an-application) for detailed / updated instructions.
@@ -71,7 +71,7 @@ platform :ios, '8.0'
7171
use_frameworks!
7272

7373
target 'MyAppTarget' do
74-
pod 'CSVImporter', '~> 1.1'
74+
pod 'CSVImporter', '~> 1.3'
7575
end
7676
```
7777

Sources/Supporting Files/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.2.0</string>
18+
<string>1.3.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)