stretchr/objx

Tag v0.1 as v0.1.0

Closed this issue · 8 comments

vgo requires that versions have three parts, like v0.1.0, but the only version tagged for objx is v0.1, and so vgo is unable to use that version. Could you please add a tag at the same commit as v0.1, and name it v0.1.0?

You can do this by:

git tag -a v0.1.0 v0.1
git push origin v0.1.0

This is required to close stretchr/testify#607.

@hanzei I see you created the new tag, but it's not at the same sha. The version needs tagging at the same sha, not a new sha. Otherwise vgo won't be able to pull in version v0.1.0.

I just taged a new version. can't you use v0.1.1?

The new version is a different sha. Can you add a tag for the existing sha that v0.1 points to? Then testify can update it's dependency reference without changing which sha it references.

If you're up for doing this but not sure how I can help.

It should be fixed now

Thanks!