Skip to content

Commit 0d6544f

Browse files
authored
relax swift-syntax version constraint to allow 603 (#714)
* relax swift-syntax version constraint to allow 603 Packages are updating to 603 and this can fail the dependency solver. * .. and also test against it
1 parent 169d2cf commit 0d6544f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ jobs:
8181
swift-syntax-version: "601.0.0"
8282
- image: "swift:6.2"
8383
swift-syntax-version: "602.0.0"
84+
- image: "swift:6.3"
85+
swift-syntax-version: "603.0.0"
8486
runs-on: ubuntu-latest
8587
container:
8688
image: ${{ matrix.entry.image }}

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ let package = Package(
4848
],
4949
traits: [tracingTrait],
5050
dependencies: [
51-
.package(url: "https://github.com/swiftlang/swift-syntax", "600.0.0"..<"603.0.0")
51+
.package(url: "https://github.com/swiftlang/swift-syntax", "600.0.0"..<"604.0.0")
5252
],
5353
targets: [
5454
.target(

0 commit comments

Comments
 (0)