Closed tylerchr closed 4 years ago
Ideally, should this change be merged, the resultant commit would be tagged with a version tag like v1.0.0
.
What's blocking this at the moment?
Thank you @tylerchr for the PR but I had to make a few more changes to migrate to Go modules and did so in #135.
Some sort of incompatibility was introduced between
moq
and whatever version ofgolang.org/x/tools/go/packages
I happened to have in my$GOPATH
that resulted inmoq
failing with odd errors (see #98).I was able to fix this by updating my copy of the dependency to the current version, though it took a bit for me to think to do that. Adding a
go.mod
file will ensure that builds ofmod
are done against a working version ofgolang.org/x/tools/go/packages
, especially in Go 1.13+ which will have modules on by default.Resolves #98.