multiformats/go-multihash

Possibly erroneous tag pushed: v1.0.2

Closed this issue · 0 comments

Woof Woof 🐶

@Kubuxu looks like you pushed old tag into this repo.
Remove this tag by running git tag -d v1.0.2 && git push origin :v1.0.2

This probably happened because your local git repositories still have old tags.
You can remove all of them in one go by running:
find libp2p multiformats ipfs -maxdepth 1 -mindepth 1 -type d | while read dir; do; cd $dir; git fetch --prune origin '+refs/tags/*:refs/tags/*'; cd ../..; done in $GOPATH/src/github.com/.

Yours truly, with 🐩, Tag Dog.