syndtr / goleveldb

LevelDB key/value database in Go.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

go.mod can't find master version

zergscut2017 opened this issue · comments

It seems like that neither v1.0.0 nor works. I got below error with master:
go: github.com/syndtr/goleveldb/leveldb@v0.0.0-20200815110645-5c35d600f0ca: invalid version: missing github.com/syndtr/goleveldb/leveldb/go.mod at revision 5c35d60

Is it possible to tag a version so go mod or go dependence works?

Would you try go get -u github.com/syndtr/goleveldb@master to pin the version to the master branch?

commented

this is a bit of a strange way to manage dependencies. is there a particular reason for the aversion towards using semver and tagging a release? there has already been a 1.0.0 release, why are these dependency management tricks coerced upon the projects that use this project as a dependency? cc @syndtr