NVIDIA / go-nvml

Go Bindings for the NVIDIA Management Library (NVML)
Apache License 2.0
290 stars 62 forks source link

Please consider not using a hyphen or dash in the tag #126

Open debarshiray opened 2 months ago

debarshiray commented 2 months ago

Currently, the Git tags used in github.com/NVIDIA/go-nvml contain a hyphen or dash:

$ git tag
...
v0.12.3-0
v0.12.4-0

Some downstream distributors like Fedora package Go modules separately, and they don't expect the upstream version string to contain a hyphen or dash. Instead, they expect to use it to separate the upstream version number from the downstream build number.

So, if possible, it would be helpful if the hyphen or dash in the Git tags were replaced with a dot. eg., v0.12.3.0, v0.12.4.0, etc..