go.uuid
go.uuid copied to clipboard
release version problem
when i use go mod,
then ,
the master is version v1.2.1,but the latest release is version v1.2.0. much more,the two version have different interface :Generator(different count of return value of its function)
+1
I was enforced to fork this repo due to this issue.
@isoloviev , @overstep123 when picking up a 3rd party library, an important step is to go look over the backlog of the repo and to figure out whether the package is live.
This package is basically dead, you should not use it. https://github.com/satori/go.uuid/issues/103
here is a workaround . change the version to below in go.mod file.
github.com/satori/go.uuid v1.2.1-0.20181028125025-b2ce2384e17b // indirect
@mailtokun a better work around is to use a maintained library for uuids. gofrs/uuid
is a fork of this that fixed the original defects the library has and it has dedicated maintenance.