Skip to content

Commit aebe889

Browse files
committed
update versions and fix warnings
1 parent 7aeb71d commit aebe889

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/.swiftpm
22
/Package.resolved
33
/.build
4+
.DS_Store

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ let package = Package(
1717
)
1818
],
1919
dependencies: [
20-
.package(url: "https://github.com/num42/swift-macrotester.git", from: "1.0.1"),
21-
.package(url: "https://github.com/apple/swift-syntax.git", from: "510.0.1"),
22-
.package(url: "https://github.com/groue/GRDB.swift.git", from: "6.18.0")
20+
.package(url: "https://github.com/num42/swift-macrotester.git", from: "1.0.2"),
21+
.package(url: "https://github.com/apple/swift-syntax.git", from: "600.0.1"),
22+
.package(url: "https://github.com/groue/GRDB.swift.git", from: "6.29.3")
2323
],
2424
targets: [
2525
// Targets are the basic building blocks of a package, defining a module or a test suite.

Sources/ColumnifierMacros/ColumnifierMacro.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public struct ColumnifyMacro: ExpressionMacro {
88
of node: some FreestandingMacroExpansionSyntax,
99
in context: some MacroExpansionContext
1010
) -> ExprSyntax {
11-
guard let argument = node.argumentList.first?.expression else {
11+
guard let argument = node.arguments.first?.expression else {
1212
fatalError("compiler bug: the macro does not have any arguments")
1313
}
1414

Sources/ColumnifierMacros/QualifiedColumnNameMacro.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public struct QualifiedColumnNameMacro: ExpressionMacro {
88
of node: some FreestandingMacroExpansionSyntax,
99
in context: some MacroExpansionContext
1010
) -> ExprSyntax {
11-
guard let argument = node.argumentList.first?.expression else {
11+
guard let argument = node.arguments.first?.expression else {
1212
fatalError("compiler bug: the macro does not have any arguments")
1313
}
1414

0 commit comments

Comments
 (0)