Update SwiftSyntax to version 509.1.1 (#5458)

This commit is contained in:
Danny Mösch
2024-02-06 23:24:50 +01:00
committed by GitHub
parent f0c1780b53
commit 8bb4c6a76c
5 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ build:macos --host_crosstool_top=@local_config_apple_cc//:toolchain
build --macos_minimum_os=13.5 --host_macos_minimum_os=13.5
build --disk_cache=~/.bazel_cache
build --experimental_remote_cache_compression
build --experimental_remote_build_event_upload=minimal
build --remote_build_event_upload=minimal
build --nolegacy_important_outputs
build --swiftcopt=-warnings-as-errors
+1 -1
View File
@@ -1 +1 @@
6.4.0
7.0.0
+2 -2
View File
@@ -9,9 +9,9 @@ bazel_dep(name = "apple_support", version = "1.11.1", repo_name = "build_bazel_a
bazel_dep(name = "bazel_skylib", version = "1.5.0")
bazel_dep(name = "platforms", version = "0.0.8")
bazel_dep(name = "rules_apple", version = "3.1.1", repo_name = "build_bazel_rules_apple")
bazel_dep(name = "rules_swift", version = "1.13.0", repo_name = "build_bazel_rules_swift")
bazel_dep(name = "rules_swift", version = "1.16.0", repo_name = "build_bazel_rules_swift")
bazel_dep(name = "sourcekitten", version = "0.34.1", repo_name = "com_github_jpsim_sourcekitten")
bazel_dep(name = "swift-syntax", version = "509.0.2", repo_name = "SwiftSyntax")
bazel_dep(name = "swift-syntax", version = "509.1.1", repo_name = "SwiftSyntax")
bazel_dep(name = "swift_argument_parser", version = "1.2.1", repo_name = "sourcekitten_com_github_apple_swift_argument_parser")
bazel_dep(name = "yams", version = "5.0.6", repo_name = "sourcekitten_com_github_jpsim_yams")
+2 -2
View File
@@ -41,8 +41,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-syntax.git",
"state" : {
"revision" : "6ad4ea24b01559dde0773e3d091f1b9e36175036",
"version" : "509.0.2"
"revision" : "64889f0c732f210a935a0ad7cda38f77f876262d",
"version" : "509.1.1"
}
},
{
+2 -2
View File
@@ -9,7 +9,7 @@ let swiftFeatures: [SwiftSetting] = [
let swiftLintPluginDependencies: [Target.Dependency]
#if os(macOS)
swiftLintPluginDependencies = [.target(name: "SwiftLintBinary")]
#else
#else
swiftLintPluginDependencies = [.target(name: "swiftlint")]
#endif
@@ -23,7 +23,7 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/apple/swift-argument-parser.git", .upToNextMinor(from: "1.2.1")),
.package(url: "https://github.com/apple/swift-syntax.git", exact: "509.0.2"),
.package(url: "https://github.com/apple/swift-syntax.git", exact: "509.1.1"),
.package(url: "https://github.com/jpsim/SourceKitten.git", .upToNextMinor(from: "0.34.1")),
.package(url: "https://github.com/jpsim/Yams.git", from: "5.0.6"),
.package(url: "https://github.com/scottrhoyt/SwiftyTextTable.git", from: "0.9.0"),