You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to build gobuffalo/pop with golang.org/x/vgo I discovered that the version numbers that this package uses v1.3 are not compatible with vgo as it is very strict about semantic version numbers.
Because of this, the only build of this package that will work with vgo is v1.0.3. Switched to full semvar numbers, like v1.3.0 will correct this problem.
When trying to build
gobuffalo/pop
withgolang.org/x/vgo
I discovered that the version numbers that this package usesv1.3
are not compatible with vgo as it is very strict about semantic version numbers.Because of this, the only build of this package that will work with vgo is
v1.0.3
. Switched to full semvar numbers, likev1.3.0
will correct this problem.Steps to reproduce
main.go
go.mod
Run:
$ vgo build -v .
The
go.mod
is updated to the "last" semvar number it can find,v1.0.3
, notv1.3
Altering the
go.mod
file to use thev1.3
rev:The text was updated successfully, but these errors were encountered: