Skip to content

Commit 1577d82

Browse files
Copilotjketema
authored andcommitted
Upgrade swift-syntax-rs to swift-syntax 603.0.2 / Swift 6.3.2
1 parent 3e2daf2 commit 1577d82

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ bazel_dep(name = "rules_dotnet", version = "0.21.5-codeql.1")
3232
bazel_dep(name = "googletest", version = "1.17.0.bcr.2")
3333
bazel_dep(name = "rules_rust", version = "0.69.0")
3434
bazel_dep(name = "rules_swift", version = "4.0.0-rc4")
35-
bazel_dep(name = "swift-syntax", version = "602.0.0.bcr.2")
35+
bazel_dep(name = "swift-syntax", version = "603.0.2")
3636

3737
# Needed so we can `use_repo` `local_config_xcode` and
3838
# `local_config_apple_cc_toolchains` below (referenced by the per-target
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.2.4
1+
6.3.2

unified/swift-syntax-rs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ The build does not depend on any particular version manager. You need:
9898
- **Rust** — pinned to `1.88` by the repo-root [`rust-toolchain.toml`](../../rust-toolchain.toml),
9999
which `rustup` picks up automatically.
100100
- **Swift** — pinned to the version in [`.swift-version`](.swift-version)
101-
(currently `6.2.4`), used to build `swift-syntax` `602.0.0`. Install it any way
101+
(currently `6.3.2`), used to build `swift-syntax` `603.0.2`. Install it any way
102102
you like — [swift.org](https://www.swift.org/install/) or
103103
[swiftly](https://www.swift.org/swiftly/) (which reads `.swift-version`), or a
104104
system package. Just make sure `swift` is on your `PATH` (or point `build.rs`

unified/swift-syntax-rs/swift/Package.resolved

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

unified/swift-syntax-rs/swift/Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import PackageDescription
44
let package = Package(
55
name: "SwiftSyntaxFFI",
66
platforms: [
7-
// swift-syntax 602 requires macOS 10.15; declare it explicitly
7+
// swift-syntax 603 requires macOS 10.15; declare it explicitly
88
// rather than relying on the swift-tools-version default (10.13).
99
.macOS(.v10_15),
1010
],
@@ -20,7 +20,7 @@ let package = Package(
2020
dependencies: [
2121
.package(
2222
url: "https://github.com/swiftlang/swift-syntax.git",
23-
exact: "602.0.0"
23+
exact: "603.0.2"
2424
)
2525
],
2626
targets: [

0 commit comments

Comments
 (0)