The Golang SDKs are now located in a new dedicated repo for that sole purpose - https://github.com/stellar/go-stellar-sdk.
Go client applications that were using SDK packages from github.com/stellar/go module will need to change their project to reference the new go module name github.com/stellar/go-stellar-sdk and rename package import statements from github.com/stellar/go/.. to github.com/stellar/go-stellar-sdk/..
# Add the new module name
go get github.com/stellar/go-stellar-sdk@latestBefore:
import "github.com/stellar/go/.."After:
import "github.com/stellar/go-stellar-sdk/.."go mod tidyNo breaking SDK changes - all functions remain the same.
go list -m github.com/stellar/go
go: module github.com/stellar/go: not a known dependencyOpen an issue at: https://github.com/stellar/go-stellar-sdk/issues