lunixbochs / struc

Better binary packing for Go
MIT License
564 stars 42 forks source link

tag versions #61

Open tcurdt opened 6 years ago

tcurdt commented 6 years ago

would be great if you could tag versions

lunixbochs commented 6 years ago

Do you have a more specific goal I can help with here? What system are you using the tags with?

tcurdt commented 6 years ago

Just to make the dependency management a bit clearer. No matter if you use dep or one of the many other options.

foxcpp commented 5 years ago

VCS tags are used by Go modules and "module mode" will be on by default in Go 1.13, so it might be worth revisiting this issue.

lunixbochs commented 4 years ago

I don't use any of these dependency management tools in my workflow, if someone wants me to manually tag this repo I'll need to know the tag format or at least a specific command I should run locally.

foxcpp commented 4 years ago

I don't use any of these dependency management tools in my workflow, if someone wants me to manually tag this repo I'll need to know the tag format or at least a specific command I should run locally.

Use Git tags with name in the following format: vX.Y.Z (https://semver.org/). Only one extra requirement is that all parts should be present (e.g. v0.1 is not valid, but v0.1.0 is).