This is the pkg.go.dev team responding to the feedback left today, which reads:
Note the "Published: Jun 30, 2015". Our master branch gets updates nearly daily, making this page nearly 5 years out-of-date. We also have published releases, the most recent stable release being last October. Not sure which you try to use.
The Go module system recognizes module versions by semantic version tags on the repo, as described in the go command doc and this blog post. We look at those tags (indirectly, via the module proxy index), and we consider the latest one to be the highest (in the semver sense) "release" tag. A release tag is of the form vX.Y.Z. If there is a higher prerelease tag (vX.Y.Z-blahblah) or pseudo-version, we remember it but don't consider it "latest."
So by our definition, the latest version of your repo is v1.1.3, published June 30, 2015.
If you were to tag your current master v1.1.4, then fetch it through the proxy using go get, we would soon update our page.
Hope this helps.
This is the pkg.go.dev team responding to the feedback left today, which reads:
The Go module system recognizes module versions by semantic version tags on the repo, as described in the go command doc and this blog post. We look at those tags (indirectly, via the module proxy index), and we consider the latest one to be the highest (in the semver sense) "release" tag. A release tag is of the form vX.Y.Z. If there is a higher prerelease tag (vX.Y.Z-blahblah) or pseudo-version, we remember it but don't consider it "latest."
So by our definition, the latest version of your repo is v1.1.3, published June 30, 2015.
If you were to tag your current master v1.1.4, then fetch it through the proxy using
go get, we would soon update our page.Hope this helps.