-
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.
* add contributors to license * add running log of changes for release notes * note Swift 5.3 compatibiltiy in readme * bump version
- Loading branch information
1 parent
1357bfc
commit ad2042d
Showing
4 changed files
with
44 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!-- | ||
## 0.0.0 | ||
API Changes: | ||
Bugfixes: | ||
Other: | ||
--> | ||
|
||
|
||
## 0.6.0 | ||
|
||
API Changes: | ||
|
||
- Rename `View` to `CSVView` to avoid SwiftUI namespace conflicts (#93) - @campionfellin | ||
|
||
Other: | ||
|
||
- Bump iOS Deployment target to 9.0, Xcode 12 recommended changes. (#91) - @DenTelezhkin |
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
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,6 +1,6 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "SwiftCSV" | ||
s.version = "0.5.6" | ||
s.version = "0.6.0" | ||
s.summary = "CSV parser for Swift" | ||
s.homepage = "https://github.com/swiftcsv/SwiftCSV" | ||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
|
@@ -9,7 +9,7 @@ Pod::Spec.new do |s| | |
"Christian Tietze" => "[email protected]" | ||
} | ||
s.source = { :git => "https://github.com/swiftcsv/SwiftCSV.git", :tag => s.version } | ||
s.swift_versions = [ "5.0", "4.2" ] | ||
s.swift_versions = [ "5.3", "5.2", "5.1", "5.0", "4.2" ] | ||
|
||
s.ios.deployment_target = "9.0" | ||
s.osx.deployment_target = "10.9" | ||
|