stormcat24 / protodep

Collect necessary .proto files (Protocol Buffers IDL) and manage dependencies
Apache License 2.0
294 stars 56 forks source link

protodep release version doesn't have "v" prefix #77

Closed hangingman closed 2 years ago

hangingman commented 2 years ago

Currently, go install retrieve correct binary, but it shows weird version string "v0.0.0-20210821063206-6f899c69903c"

$ go install -v github.com/stormcat24/protodep@0.1.5
go: downloading github.com/stormcat24/protodep v0.0.0-20210821063206-6f899c69903c
stormcat24 commented 2 years ago

@hangingman Nice catch. I plan to fix this in the next release!

stormcat24 commented 2 years ago

@hangingman Hi, I have released a new version that has "v" prefix.

https://github.com/stormcat24/protodep/releases/tag/v0.1.6

hangingman commented 2 years ago

@stormcat24 Great! It looks working. Please close this issue your timing 👍

$ go install -v github.com/stormcat24/protodep@v0.1.6
go: downloading github.com/stormcat24/protodep v0.1.6
...

$ protodep version

 ________  ________  ________  _________  ________  ________  _______   ________   
|\   __  \|\   __  \|\   __  \|\___   ___\\   __  \|\   ___ \|\  ___ \ |\   __  \  
\ \  \|\  \ \  \|\  \ \  \|\  \|___ \  \_\ \  \|\  \ \  \_|\ \ \   __/|\ \  \|\  \ 
 \ \   ____\ \   _  _\ \  \\\  \   \ \  \ \ \  \\\  \ \  \ \\ \ \  \_|/_\ \   ____\
  \ \  \___|\ \  \\  \\ \  \\\  \   \ \  \ \ \  \\\  \ \  \_\\ \ \  \_|\ \ \  \___|
   \ \__\    \ \__\\ _\\ \_______\   \ \__\ \ \_______\ \_______\ \_______\ \__\   
    \|__|     \|__|\|__|\|_______|    \|__|  \|_______|\|_______|\|_______|\|__|

{"Version": "v0.1.6"}
stormcat24 commented 2 years ago

Good!