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
Add a retract version for v2.1.0+incompatible. (#109)
This will avoid listing this version in "go list -m -versions", which
is used by GitHub's dependabot. The "go list" is expected to list
versions oldest to newest, but it doesn't exclude the "+incompatible"
versions and treats v2.1.0 as the newest. We don't want that, 1.1 is the
latest at the moment.
Add a go.mod for v1.1.0. This will make the Go proxy (#86)
prefer v1.* (with a valid go.mod file) over the v2.1.0+incompatible version
(which doesn't have a go.mod file).