Skip to content

Commit 582872a

Browse files
committed
Prepare 0.6.4 release
1 parent 554f5d5 commit 582872a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ A clear and concise description of what you expected to happen.
2020

2121
## System
2222
- OS: [e.g. macOS 11, iOS 14, Ubuntu 20.04]
23-
- CodableCSV: [e.g. 0.6.3]
23+
- CodableCSV: [e.g. 0.6.4]
2424
You can check this in your SPM `Package.swift` file (or `Package.resolved` file). Alternatively, go to Xcode's Source Control Navigator (`⌘+2`) and click on `CodableCSV`.
2525

2626
## Additional context

.github/ISSUE_TEMPLATE/question.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ Add any other context about the question here (or delete this section if it is u
1616
## System
1717
Delete section if not applicable
1818
- OS: [e.g. macOS 11, iOS 14, Ubuntu 20.04]
19-
- CodableCSV: [e.g. 0.6.3]
19+
- CodableCSV: [e.g. 0.6.4]
2020
You can check this in your SPM `Package.swift` file (or `Package.resolved` file). Alternatively, go to Xcode's Source Control Navigator (`⌘+2`) and click on `CodableCSV`.

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.6.3"
3+
s.version = "0.6.4"
44
s.summary = "Read and write CSV files row-by-row or through Swift's Codable interface."
55
s.description = <<-DESC
66
CodableCSV offers imperative and declarative ways to read and write CSV files. It is extensively configurable and is capable of reading multiple types of entries and write to many outputs.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ You can choose to add the library through SPM or Cocoapods:
3737
let package = Package(
3838
/* Your package name, supported platforms, and generated products go here */
3939
dependencies: [
40-
.package(url: "https://github.com/dehesa/CodableCSV.git", from: "0.6.3")
40+
.package(url: "https://github.com/dehesa/CodableCSV.git", from: "0.6.4")
4141
],
4242
targets: [
4343
.target(name: /* Your target name here */, dependencies: ["CodableCSV"])
@@ -48,7 +48,7 @@ You can choose to add the library through SPM or Cocoapods:
4848
- [Cocoapods](https://cocoapods.org).
4949

5050
```
51-
pod 'CodableCSV', '~> 0.6.3'
51+
pod 'CodableCSV', '~> 0.6.4'
5252
```
5353

5454
</p></details>

0 commit comments

Comments
 (0)