Versent / unicreds

unicreds is a CLI which manages secrets in AWS using DynamoDB and KMS.
https://github.com/Versent/unicreds
MIT License
117 stars 39 forks source link

Prefix release tags with 'v' #84

Open jayschwa opened 6 years ago

jayschwa commented 6 years ago

The new go modules feature expects tagged versions to be prefixed with a 'v'. Since the latest release, 1.7.0, is missing the prefix, the go command finds v1.5.0 as the latest version.

ace03uec commented 4 years ago

This would really help in using unicreds in other go pkgs.

jonatasbaldin commented 3 years ago

Agree with that!

One way we can do is to use the commit hash, like go get github.com/versent/unicreds@7135c85, this will create a pseudo-version name like v1.5.1-0.20180327234242-7135c859e003 (the pseudo-version name gets some more chars from the hash string). This is documented here

This might work 🤔