In go.mod in github.com/moby/buildkit, I found this line:
github.com/containerd/containerd v1.4.0-0.20191014053712-acdcf13d5eaf
This is an invalid psedo version: It is in the form of "vX.Y.(Z+1)-0.yyyymmddhhmmss-abcdefabcdef" but (Z+1)=0. It is rejected by go tools.
I came through a comment in cmd/go/internal/modfetch/pseudo.go, saying interested in examples of invalid pseudo versions "vX.0.0-0". Though this is not exactly the case, I think it may still be of interests of determining futher development.
In go.mod in github.com/moby/buildkit, I found this line:
This is an invalid psedo version: It is in the form of "vX.Y.(Z+1)-0.yyyymmddhhmmss-abcdefabcdef" but (Z+1)=0. It is rejected by go tools.
I came through a comment in cmd/go/internal/modfetch/pseudo.go, saying interested in examples of invalid pseudo versions "vX.0.0-0". Though this is not exactly the case, I think it may still be of interests of determining futher development.