Skip to content

Commit 35fd161

Browse files
committed
Prepare 0.6.7 release
1 parent b0acc64 commit 35fd161

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ Steps to reproduce the behavior:
1919
A clear and concise description of what you expected to happen.
2020

2121
## System
22-
- OS: [e.g. macOS 11.2, iOS 14.4, Ubuntu 20.04]
23-
- CodableCSV: [e.g. 0.6.6]
22+
- OS: [e.g. macOS 11.5, iOS 14.7, Ubuntu 20.04]
23+
- CodableCSV: [e.g. 0.6.7]
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ Add any other context about the question here (or delete this section if it is u
1515

1616
## System
1717
Delete section if not applicable
18-
- OS: [e.g. macOS 11.2, iOS 14.4, Ubuntu 20.04]
19-
- CodableCSV: [e.g. 0.6.6]
18+
- OS: [e.g. macOS 11.5, iOS 14.7, Ubuntu 20.04]
19+
- CodableCSV: [e.g. 0.6.7]
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
Pod::Spec.new do |s|
22
s.name = "CodableCSV"
3-
s.version = "0.6.6"
3+
s.version = "0.6.7"
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.
77
DESC
88
s.homepage = "https://github.com/dehesa/CodableCSV"
99
s.license = { :type => "MIT", :file => "LICENSE" }
1010
s.author = { "Marcos Sánchez-Dehesa Carballo" => "[email protected]" }
11-
s.ios.deployment_target = "9.0"
11+
s.ios.deployment_target = "11.0"
1212
s.osx.deployment_target = "10.10"
1313
s.watchos.deployment_target = "2.0"
1414
s.tvos.deployment_target = "9.0"
15-
s.swift_version = ["5.1", "5.2", "5.3", "5.4", "5.5"]
15+
s.swift_version = ["5.3", "5.4", "5.5"]
1616
s.source = { :git => "https://github.com/dehesa/CodableCSV.git", :tag => "#{s.version}" }
1717
s.source_files = "sources", "sources/**/*.swift"
1818

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.6")
40+
.package(url: "https://github.com/dehesa/CodableCSV.git", from: "0.6.7")
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.6'
51+
pod 'CodableCSV', '~> 0.6.7'
5252
```
5353

5454
</p></details>

docs/assets/badges/Apple.svg

Lines changed: 1 addition & 1 deletion
Loading

sources/Strategy.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public enum Strategy {
88
case scalar(Unicode.Scalar)
99

1010
/// Escape double quoted values.
11-
@_transparent public static var doubleQuote: Self { .scalar(#"""#) }
11+
@_transparent public static var doubleQuote: Self { .scalar("\"") }
1212

1313
public init(nilLiteral: ()) {
1414
self = .none

0 commit comments

Comments
 (0)