Skip to content

Commit 3498ee7

Browse files
committed
Prepare 0.5.4 release
1 parent 49e077d commit 3498ee7

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

CodableCSV.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'CodableCSV'
3-
s.version = '0.5.3'
3+
s.version = '0.5.4'
44
s.summary = "Read and write CSV files row-by-row or through Swift's Codable interface."
55

66
s.homepage = 'https://github.com/dehesa/CodableCSV'

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ You can choose to add the library through SPM or Cocoapods:
3939
let package = Package(
4040
/* Your package name, supported platforms, and generated products go here */
4141
dependencies: [
42-
.package(url: "https://github.com/dehesa/CodableCSV.git", .upToNextMinor(from: "0.5.3"))
42+
.package(url: "https://github.com/dehesa/CodableCSV.git", .upToNextMajor(from: "0.5.4"))
4343
],
4444
targets: [
4545
.target(name: /* Your target name here */, dependencies: ["CodableCSV"])
@@ -50,7 +50,7 @@ You can choose to add the library through SPM or Cocoapods:
5050
- [Cocoapods](https://cocoapods.org).
5151

5252
```
53-
pod 'CodableCSV', '~> 0.5.3'
53+
pod 'CodableCSV', '~> 0.5.4'
5454
```
5555

5656
</p></details>
@@ -678,9 +678,9 @@ The library has been heavily documented and any contribution is welcome. Check t
678678
679679
### Community
680680
681-
If `CodableCSV` is not of your liking, the Swift community has developed other CSV solutions:
681+
If `CodableCSV` is not of your liking, the Swift community offers other CSV solutions:
682682
683-
- [CSV.swift](https://github.com/yaslab/CSV.swift) offers an imperative CSV reader/writer and a _lazy_ row decoder and adheres to the [RFC4180](https://tools.ietf.org/html/rfc4180) standard.
683+
- [CSV.swift](https://github.com/yaslab/CSV.swift) contains an imperative CSV reader/writer and a _lazy_ row decoder and adheres to the [RFC4180](https://tools.ietf.org/html/rfc4180) standard.
684684
- [SwiftCSV](https://github.com/swiftcsv/SwiftCSV) is a well-tested parse-only library which loads the whole CSV in memory (not intended for large files).
685685
- [CSwiftV](https://github.com/Daniel1of1/CSwiftV) is a parse-only library which loads the CSV in memory and parses it in a single go (no imperative reading).
686686
- [CSVImporter](https://github.com/Flinesoft/CSVImporter) is an asynchronous parse-only library with support for big CSV files (incremental loading).
@@ -689,4 +689,4 @@ If `CodableCSV` is not of your liking, the Swift community has developed other C
689689
- [CSV](https://github.com/skelpo/CSV) offers synchronous and asynchronous imperative CSV reader/writer and encoders/decoders.
690690
- [CommonCoding](https://github.com/Lantua/CommonCoding) provides a CSV encoder/decoder conforming to the [RFC4180](https://tools.ietf.org/html/rfc4180) standard.
691691
692-
There are many good tools outside the Swift community. Since writing them all would be a hard task, I will just point you to the great [AwesomeCSV](https://github.com/secretGeek/awesomeCSV) github repo. Take it a look! There are a lot of treasures to be found there.
692+
There are many good tools outside the Swift community. Since writing them all would be a hard task, I will just point you to the great [AwesomeCSV](https://github.com/secretGeek/awesomeCSV) github repo. There are a lot of treasures to be found there.

docs/assets/Roadmap.svg

Lines changed: 1 addition & 1 deletion
Loading

0 commit comments

Comments
 (0)