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
The major version used in a git tag must be the same as the Go module version (defined in go.mod) at that revision. Otherwise, that rev isn't importable.
$ go get github.com/osmosis-labs/osmosis/v10@latest
go: added github.com/osmosis-labs/osmosis/v10 v10.1.1
$ go get github.com/osmosis-labs/osmosis/[email protected]
go: github.com/osmosis-labs/osmosis/[email protected]: invalid version: module path includes a major version suffix, so major version must match
$ go get github.com/osmosis-labs/osmosis/v11@latest
go: module github.com/osmosis-labs/osmosis@latest found (v1.0.4), but does not contain package github.com/osmosis-labs/osmosis/v11
So the change here would be
diff --git a/go.mod b/go.mod
index 000c6c61..fba340f1 100644
--- a/go.mod+++ b/go.mod@@ -1,4 +1,4 @@-module github.com/osmosis-labs/osmosis/v10+module github.com/osmosis-labs/osmosis/v11
go 1.18
plus whatever import paths need to be updated.
The text was updated successfully, but these errors were encountered:
The major version used in a git tag must be the same as the Go module version (defined in go.mod) at that revision. Otherwise, that rev isn't importable.
So the change here would be
plus whatever import paths need to be updated.
The text was updated successfully, but these errors were encountered: