diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b4ccc13..4418209 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,11 +12,11 @@ jobs: strategy: matrix: os: [macos-latest] - swift: ["5.8"] + swift: ["6.0"] config: ["debug", "release"] runs-on: ${{ matrix.os }} steps: - - uses: swift-actions/setup-swift@v1 + - uses: swift-actions/setup-swift@v2 with: swift-version: ${{ matrix.swift }} - uses: actions/checkout@v3 diff --git a/Package.resolved b/Package.resolved index 9c3f711..a97dd3f 100644 --- a/Package.resolved +++ b/Package.resolved @@ -32,8 +32,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/pointfreeco/swift-parsing", "state" : { - "revision" : "a0e7d73f462c1c38c59dc40a3969ac40cea42950", - "version" : "0.13.0" + "revision" : "3432cb81164dd3d69a75d0d63205be5fbae2c34b", + "version" : "0.14.1" } }, { diff --git a/Package.swift b/Package.swift index 579b0f5..84dfc0f 100644 --- a/Package.swift +++ b/Package.swift @@ -17,7 +17,7 @@ let package = Package( ), ], dependencies: [ - .package(url: "https://github.com/pointfreeco/swift-parsing", from: "0.13.0"), + .package(url: "https://github.com/pointfreeco/swift-parsing", from: "0.14.1"), .package(url: "https://github.com/google/swift-benchmark", from: "0.1.2"), ], targets: [ diff --git a/Tests/JSONParsingTests/JSONParsers/DecodableJSONParserTests.swift b/Tests/JSONParsingTests/JSONParsers/DecodableJSONParserTests.swift index e4b0af3..64b818c 100644 --- a/Tests/JSONParsingTests/JSONParsers/DecodableJSONParserTests.swift +++ b/Tests/JSONParsingTests/JSONParsers/DecodableJSONParserTests.swift @@ -60,7 +60,7 @@ final class DecodableJSONParserTests: XCTestCase { "\(error)", """ At [index 1]/"hobbies"/[index 0]: - (DecodingError) - Expected String but found null value instead. + (DecodingError) - Cannot get value of type String -- found null value instead """ ) }