Skip to content

Commit

Permalink
Never default to a qualifier when none of them are set.
Browse files Browse the repository at this point in the history
By default if not qualifier were set by the build process the version
subcommand would default to [current version]+[alpha1].
  • Loading branch information
ph committed Nov 19, 2018
1 parent b007837 commit 0a0c267
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libbeat/version/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func GetDefaultVersion() string {
var (
buildTime = "unknown"
commit = "unknown"
qualifier = "alpha1"
qualifier = ""
)

// BuildTime exposes the compile-time build time information.
Expand Down

0 comments on commit 0a0c267

Please sign in to comment.