oramasearch / onnx-go

onnx-go gives the ability to import a pre-trained neural network within Go without being linked to a framework or library.
https://blog.owulveryck.info/2019/04/03/from-a-project-to-a-product-the-state-of-onnx-go.html
MIT License
704 stars 72 forks source link

Use semver-compatible tags for releases #168

Open ybubnov opened 4 years ago

ybubnov commented 4 years ago

Hi @owulveryck, thank you for the project, it looks awesome.

A minor note from go mod specification: in order to correctly use this module through go.mod, you have to specify tags in semver format, so instead of v0.3, use v0.3.0.

For example, pre-release of tiny-YOLO-v2, could be marked as v0.3.0-rc.1.

Again, thank you a lot!

owulveryck commented 4 years ago

Thank you for tour comment. I wasn’t aware of this!

I will try to use go-releaser to ease all of this.

Thanks again.

I let this issue open until goreleaser is in place.