diff --git a/build/version.go b/build/version.go index 6b36aa5eb..4badd3aa7 100644 --- a/build/version.go +++ b/build/version.go @@ -23,11 +23,11 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr const ( appMajor uint = 0 appMinor uint = 5 - appPatch uint = 1 + appPatch uint = 2 // appPreRelease MUST only contain characters from semanticAlphabet // per the semantic versioning spec. - appPreRelease = "beta" + appPreRelease = "99-beta" ) // Version returns the application version as a properly formed string per the