[Sources/Arrow/File_generated.swift, Sources/Arrow/Message_generated.swift]
have several instances of
|
static func validateVersion() { FlatBuffersVersion_25_2_10() } |
however the package.swift has
|
.package(url: "https://github.com/google/flatbuffers.git", from: "25.2.10"), |
the from keyword causes xcode to automatically grab newer versions of flatbuffers if they are available. This is currently true.
The package.swift should be changed to exact: "25.2.10" or the version checking needs to be updated to allow for versions of equal or newer.
[Sources/Arrow/File_generated.swift, Sources/Arrow/Message_generated.swift]
have several instances of
arrow-swift/Sources/Arrow/Message_generated.swift
Line 96 in 62cef01
however the package.swift has
arrow-swift/Package.swift
Line 34 in 62cef01
the
fromkeyword causes xcode to automatically grab newer versions of flatbuffers if they are available. This is currently true.The package.swift should be changed to
exact: "25.2.10"or the version checking needs to be updated to allow for versions of equal or newer.