Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to swift-syntax 600 #5

Merged
merged 1 commit into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading