From f95a71fdc95d46b54e2f3f2be2fe9d8027d9f876 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Thu, 21 Feb 2019 23:21:14 -0800 Subject: [PATCH] build: bump to psuedo version 0.5.2-99-beta --- build/version.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/version.go b/build/version.go index 6b36aa5e..4badd3aa 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