willtemperley opened a new pull request, #93: URL: https://github.com/apache/arrow-swift/pull/93
There is a mismatch between the FlatBuffers runtime which is 25.2.10 and the bindings which were generated with 23.1.4. ## What's Changed The files have been generated by FlatBuffers 25.2.10. The API for message construction has been updated to match the new API. For example: ` let message = org_apache_arrow_flatbuf_Message.getRootAsMessage(bb: dataBuffer) ` becomes: ` let message: org_apache_arrow_flatbuf_Message = getRoot(byteBuffer: &dataBuffer) ` Closes [#92](https://github.com/apache/arrow-swift/issues/92) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
