I published an update to a Go module, bumping the version to v1.1.0. I created a tag named v1.1.0
and pushed the tag to GitHub.
https://github.com/depp/bytesize/releases/tag/v1.1.0
However, I cannot use this package in my other projects. I get an error that says, "invalid version: unknown revision v1.1.0". I don't know why the revision is "unknown", since it's tagged.
$ go get github.com/depp/[email protected]
go: downloading github.com/depp/bytesize v1.1.0
go get github.com/depp/[email protected]: github.com/depp/[email protected]: verifying module: github.com/depp/[email protected]: reading https://sum.golang.org/lookup/github.com/depp/[email protected]: 410 Gone
server response: not found: github.com/depp/[email protected]: invalid version: unknown revision v1.1.0
[Exit: 1]