Skip to content

Commit

Permalink
chore: Bump version const
Browse files Browse the repository at this point in the history
Otherwise, `houndd -version` spits out the wrong version.
Anticipating the patch release that this commit will go out with.
  • Loading branch information
salemhilal authored Jun 22, 2022
1 parent 27fa1ef commit ae638e5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cmds/houndd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
}

Expand Down

0 comments on commit ae638e5

Please sign in to comment.