From ae638e5b4793bae392202e645a931ea2044ea26d Mon Sep 17 00:00:00 2001 From: Salem Date: Wed, 22 Jun 2022 08:53:53 -0400 Subject: [PATCH] chore: Bump version const Otherwise, `houndd -version` spits out the wrong version. Anticipating the patch release that this commit will go out with. --- cmds/houndd/main.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cmds/houndd/main.go b/cmds/houndd/main.go index 5419f5fa..b3513724 100644 --- a/cmds/houndd/main.go +++ b/cmds/houndd/main.go @@ -115,11 +115,12 @@ func runHttp( //nolint return http.ListenAndServe(addr, m) } +// TODO: Automatically increment this when building a release func getVersion() semver.Version { return semver.Version{ Major: 0, - Minor: 4, - Patch: 0, + Minor: 5, + Patch: 1, } }