Closed RelicOfTesla closed 3 years ago
不知道为啥 goproxy都没有刷到最新的tag。。。。 https://goproxy.cn/github.com/seefan/gossdb/@v/list (或者换官方的也一样)
go env -w GOPROXY=direct
go get -u github.com/seefan/gossdb@v2.0.0
go get github.com/seefan/gossdb@v2.0.0: github.com/seefan/gossdb@v2.0.0: invalid version: module contains a go.mod file, so major version must be compatible: should be v0 or v1, not v2
查了下,是go.mod得改掉,才能支持>=2.0以上的tag
方法1,go.mod,同时代码里的import也得带上v2
module github.com/seefan/gossdb/v2
调整了配置
现在tag 是v2.0,go mod不会认。。请使用v2.0.0格式