solarkennedy / uq

Universal serialized data reader to JSON
Apache License 2.0
51 stars 1 forks source link

Improper Git tag format results in incorrect Go module definition #10

Closed cixtor closed 3 years ago

cixtor commented 3 years ago

Hello @solarkennedy.

I noticed that you converted the project into a Go module with commit 72729d8. Thank you for that.

Unfortunately, release 0.0.4 and 0.0.5 have an incorrect Git tag format. Go modules must be prefixed with the letter v (short for version). Otherwise, developers are forced to reference your project in go.mod as an indirect dependency, using a Git commit hash.

If you release a new version, please consider using Git tag v0.0.6 (notice the prefix).

Thanks in advance.

solarkennedy commented 3 years ago

TIL, thanks!