hound-search/hound

`houndd -version` returns v0.4.0 on v0.5.0

ictrobot opened this issue · 2 comments

> go install github.com/hound-search/hound/cmds/houndd@v0.5.0
go: downloading github.com/hound-search/hound v0.5.0
go: downloading github.com/blang/semver v3.5.1+incompatible

> houndd -version
houndd v0.4.0

Presumably it should say houndd v0.5.0? It appears the version number is just hardcoded and was not updated

hound/cmds/houndd/main.go

Lines 119 to 123 in 27fa1ef

return semver.Version{
Major: 0,
Minor: 4,
Patch: 0,
}

Ah yes, this is something we always forget to do -_-
Thank you for noticing! I'll update and release a patch.

This should be fixed as of ae638e5. v0.5.1 is building as we speak. You can follow along with the release here, if you'd like. Thanks for reporting!