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/v10@v11.0.0
go: github.com/osmosis-labs/osmosis/v10@v11.0.0: 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: