Skip to content

Commit 2f6ecf1

Browse files
committed
Bump swift-parsing to newest version
1 parent ba457be commit 2f6ecf1

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [macos-latest]
15-
swift: ["5.8"]
15+
swift: ["6.0"]
1616
config: ["debug", "release"]
1717
runs-on: ${{ matrix.os }}
1818
steps:
19-
- uses: swift-actions/setup-swift@v1
19+
- uses: swift-actions/setup-swift@v2
2020
with:
2121
swift-version: ${{ matrix.swift }}
2222
- uses: actions/checkout@v3

Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ let package = Package(
1717
),
1818
],
1919
dependencies: [
20-
.package(url: "https://github.com/pointfreeco/swift-parsing", from: "0.13.0"),
20+
.package(url: "https://github.com/pointfreeco/swift-parsing", from: "0.14.1"),
2121
.package(url: "https://github.com/google/swift-benchmark", from: "0.1.2"),
2222
],
2323
targets: [

Tests/JSONParsingTests/JSONParsers/DecodableJSONParserTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ final class DecodableJSONParserTests: XCTestCase {
6060
"\(error)",
6161
"""
6262
At [index 1]/"hobbies"/[index 0]:
63-
(DecodingError) - Expected String but found null value instead.
63+
(DecodingError) - Cannot get value of type String -- found null value instead
6464
"""
6565
)
6666
}

0 commit comments

Comments
 (0)