Ref #57 - this is what I end up with when I do the following:
go mod init
# Pick up build dependencies
make generate
make build
make release
# Update all deps to latest minor version and tidy
go get -u
go mod tidy
# Build/test again to make sure everything works
make test && make release
I think most of the diff between this and your branch is the go get -u to get the latest minor version of all dependencies - hopefully a good thing for bug fixes etc?
Ref #57 - this is what I end up with when I do the following:
I think most of the diff between this and your branch is the
go get -u
to get the latest minor version of all dependencies - hopefully a good thing for bug fixes etc?