In my go.mod
file, I have:
require (
// ... editted for brevity
github.com/Liquid-Labs/catalyst-firewrap v2.0.0-prototype.3
// ...
)
When I tried to build another package dependent on this package, I get: invalid module: github.com/Liquid-Labs/catalyst-firewrap should be v0 or v1, not v2 (v2.0.0-prototype.3)
.
There was a rewrite back before go went modular, and I wasn't tagging stuff back then, so there is no v1
... is that the problem? I'm not having any luck finding an explanation of the underlying problem here.