Hi, Experts
Now I am drafting a golang application to access fdb, initially it access fdb 6.2, and in the go.mod is as following:
...
require (
github.com/apple/foundationdb/bindings/go v0.0.0-20200112054404-407dc0907f4f
...
But when it is upgraded to fdb 6.3, in the app the line “fdb.MustAPIVersion(630)” popup “version not support” error.
So I tried to change the go binding version in go.mod, but I can only found 7.x binding version from https://pkg.go.dev/github.com/apple/foundationdb/bindings/go/src/fdb?tab=versions
If I use latest version “v0.0.0-20221110120141-0160570c2a46” in go.mod which is for 7.x, it popup the error message:
....
Requested API version requires a newer version of this header
...
So I wonder for fdb 6.3 what is the binding version in go.mod? Thanks!