UnnoTed / fileb0x

a better customizable tool to embed files in go; also update embedded files remotely without restarting the server
MIT License
634 stars 53 forks source link

Please tag as v1.0.0 (or whatever) #39

Closed coolaj86 closed 5 years ago

coolaj86 commented 5 years ago

For the sake of being able to easily track likely breaking changes it would be great to have some tags.

git tag v1.0.0
git push --tags

Since this is already much used and well-tested in the wild, starting at v1.0.0 makes sense to me - but you do what you like :)

barryz commented 5 years ago

+1

Modules must be semantically versioned in the form v(major).(minor).(patch), such as v0.1.0, v1.2.3, or v3.0.1. The leading v is required. If using Git, tag released commits with their versions.

coolaj86 commented 5 years ago

Thanks!