Skip to content

Commit

Permalink
Prepare 0.6.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dehesa committed Nov 22, 2020
1 parent 554f5d5 commit 582872a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ A clear and concise description of what you expected to happen.

## System
- OS: [e.g. macOS 11, iOS 14, Ubuntu 20.04]
- CodableCSV: [e.g. 0.6.3]
- CodableCSV: [e.g. 0.6.4]
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`.

## Additional context
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ Add any other context about the question here (or delete this section if it is u
## System
Delete section if not applicable
- OS: [e.g. macOS 11, iOS 14, Ubuntu 20.04]
- CodableCSV: [e.g. 0.6.3]
- CodableCSV: [e.g. 0.6.4]
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`.
2 changes: 1 addition & 1 deletion CodableCSV.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "CodableCSV"
s.version = "0.6.3"
s.version = "0.6.4"
s.summary = "Read and write CSV files row-by-row or through Swift's Codable interface."
s.description = <<-DESC
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.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ You can choose to add the library through SPM or Cocoapods:
let package = Package(
/* Your package name, supported platforms, and generated products go here */
dependencies: [
.package(url: "https://github.com/dehesa/CodableCSV.git", from: "0.6.3")
.package(url: "https://github.com/dehesa/CodableCSV.git", from: "0.6.4")
],
targets: [
.target(name: /* Your target name here */, dependencies: ["CodableCSV"])
Expand All @@ -48,7 +48,7 @@ You can choose to add the library through SPM or Cocoapods:
- [Cocoapods](https://cocoapods.org).

```
pod 'CodableCSV', '~> 0.6.3'
pod 'CodableCSV', '~> 0.6.4'
```

</p></details>
Expand Down

0 comments on commit 582872a

Please sign in to comment.