Skip to content

Commit f32fa79

Browse files
committed
[SPARK-52371] Update Example projects to use the latest main branch always
### What changes were proposed in this pull request? This PR aims to update `Example` projects to use the latest `main` branch always. ```swift - .package(url: "https://github.com/apache/spark-connect-swift.git", branch: "v0.1.0"), + .package(url: "https://github.com/apache/spark-connect-swift.git", branch: "main"), ``` ### Why are the changes needed? Until we have `1.0.0` release, this will lead a user to use the latest bug fixed version. ### Does this PR introduce _any_ user-facing change? No behavior change because this is an example update. ### How was this patch tested? Manual review. ### Was this patch authored or co-authored using generative AI tooling? Pass the CIs. Closes #190 from dongjoon-hyun/SPARK-52371. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent ac225db commit f32fa79

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Examples/app/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ let package = Package(
2626
.macOS(.v15)
2727
],
2828
dependencies: [
29-
.package(url: "https://github.com/apache/spark-connect-swift.git", branch: "v0.1.0")
29+
.package(url: "https://github.com/apache/spark-connect-swift.git", branch: "main")
3030
],
3131
targets: [
3232
.executableTarget(

Examples/web/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ let package = Package(
2929
.package(url: "https://github.com/vapor/vapor.git", from: "4.110.1"),
3030
// 🔵 Non-blocking, event-driven networking for Swift. Used for custom executors
3131
.package(url: "https://github.com/apple/swift-nio.git", from: "2.65.0"),
32-
.package(url: "https://github.com/apache/spark-connect-swift.git", branch: "v0.1.0"),
32+
.package(url: "https://github.com/apache/spark-connect-swift.git", branch: "main"),
3333
],
3434
targets: [
3535
.executableTarget(

0 commit comments

Comments
 (0)