Skip to content

Commit 8ddd519

Browse files
authored
Support swift-syntax from 600.0.0-latest (#858)
The Xcode 16 beta generates macro projects using these swift-syntax snapshots. Luckily things seem to be backwards compatible, so we can expand our supported range.
1 parent 837238a commit 8ddd519

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Package.resolved

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
{
44
"identity" : "swift-syntax",
55
"kind" : "remoteSourceControl",
6-
"location" : "https://github.com/apple/swift-syntax.git",
6+
"location" : "https://github.com/apple/swift-syntax",
77
"state" : {
8-
"revision" : "08a2f0a9a30e0f705f79c9cfaca1f68b71bdc775",
9-
"version" : "510.0.0"
8+
"revision" : "303e5c5c36d6a558407d364878df131c3546fad8",
9+
"version" : "510.0.2"
1010
}
1111
}
1212
],

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ let package = Package(
2121
),
2222
],
2323
dependencies: [
24-
.package(url: "https://github.com/apple/swift-syntax", "508.0.1"..<"511.0.0")
24+
.package(url: "https://github.com/apple/swift-syntax", "508.0.1"..<"601.0.0")
2525
],
2626
targets: [
2727
.target(

0 commit comments

Comments
 (0)