Skip to content

Commit

Permalink
Bump to swift-syntax 600 (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
hi2gage authored Oct 17, 2024
1 parent e7d45d4 commit 01d7874
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-syntax.git",
"state" : {
"revision" : "64889f0c732f210a935a0ad7cda38f77f876262d",
"version" : "509.1.1"
"revision" : "0687f71944021d616d34d922343dcef086855920",
"version" : "600.0.1"
}
}
],
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ let package = Package(
),
],
dependencies: [
.package(url: "https://github.com/apple/swift-syntax.git", from: "509.1.1"),
.package(url: "https://github.com/apple/swift-syntax.git", from: "600.0.1"),
],
targets: [
.macro(
Expand Down
10 changes: 5 additions & 5 deletions Tests/SFSymbolsMacroTests/SFSymbolsMacroTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ final class SFSymbolsMacroTests: XCTestCase {
self.rawValue
}
#if canImport (UIKit)
#if canImport(UIKit)
func uiImage(configuration: UIImage.Configuration? = nil) -> UIImage {
UIImage(systemName: self.rawValue, withConfiguration: configuration)!
}
Expand Down Expand Up @@ -76,7 +76,7 @@ final class SFSymbolsMacroTests: XCTestCase {
self.rawValue
}
#if canImport (UIKit)
#if canImport(UIKit)
public func uiImage(configuration: UIImage.Configuration? = nil) -> UIImage {
UIImage(systemName: self.rawValue, withConfiguration: configuration)!
}
Expand Down Expand Up @@ -119,7 +119,7 @@ final class SFSymbolsMacroTests: XCTestCase {
self.rawValue
}
#if canImport (UIKit)
#if canImport(UIKit)
internal func uiImage(configuration: UIImage.Configuration? = nil) -> UIImage {
UIImage(systemName: self.rawValue, withConfiguration: configuration)!
}
Expand Down Expand Up @@ -162,7 +162,7 @@ final class SFSymbolsMacroTests: XCTestCase {
self.rawValue
}
#if canImport (UIKit)
#if canImport(UIKit)
fileprivate func uiImage(configuration: UIImage.Configuration? = nil) -> UIImage {
UIImage(systemName: self.rawValue, withConfiguration: configuration)!
}
Expand Down Expand Up @@ -205,7 +205,7 @@ final class SFSymbolsMacroTests: XCTestCase {
self.rawValue
}
#if canImport (UIKit)
#if canImport(UIKit)
private func uiImage(configuration: UIImage.Configuration? = nil) -> UIImage {
UIImage(systemName: self.rawValue, withConfiguration: configuration)!
}
Expand Down

0 comments on commit 01d7874

Please sign in to comment.