Skip to content

Commit 6983ebb

Browse files
committed
apacheGH-44432: [Swift] Use flatbuffers v24.3.7 or later
It includes google/flatbuffers#8134 .
1 parent 3d8301c commit 6983ebb

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

swift/Arrow/Package.swift

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,10 @@ let package = Package(
3131
targets: ["Arrow"])
3232
],
3333
dependencies: [
34-
// The latest version of flatbuffers v23.5.26 was built in May 26, 2023
35-
// and therefore doesn't include the unaligned buffer swift changes.
36-
// This can be changed back to using the tag once a new version of
37-
// flatbuffers has been released.
38-
.package(url: "https://github.com/google/flatbuffers.git", branch: "master"),
34+
.package(
35+
url: "https://github.com/google/flatbuffers.git",
36+
.upToNextMajor(from: "v24.3.7")
37+
),
3938
.package(
4039
url: "https://github.com/apple/swift-atomics.git",
4140
.upToNextMajor(from: "1.2.0") // or `.upToNextMinor

0 commit comments

Comments
 (0)