search for: ce3e4f39

Displaying 1 result from an estimated 1 matches for "ce3e4f39".

2023 Aug 11
2
[libnbd PATCH] golang: Bump minimum Go version to 1.17
...m. -* go and cgo, for compiling the golang bindings and tests. +* go and cgo >= 1.17, for compiling the golang bindings and tests. * bash-completion >= 1.99 for tab completion. Optional, only needed to run the test suite: diff --git a/golang/configure/go.mod b/golang/configure/go.mod index ce3e4f39..fcdb28db 100644 --- a/golang/configure/go.mod +++ b/golang/configure/go.mod @@ -1,4 +1,4 @@ module libguestfs.org/configure -// First version of golang with working module support. -go 1.13 +// First version of golang with working module support and unsafe.Slice. +go 1.17 diff --git a/golang/con...