From 2cc6687ff36fccd4b7df1c1f8c274c1e6002c137 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Wed, 3 Apr 2019 15:48:17 -0700 Subject: [PATCH] build: bump version to 0.6-beta --- build/version.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/version.go b/build/version.go index 4badd3aa..67803f2b 100644 --- a/build/version.go +++ b/build/version.go @@ -22,12 +22,12 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr // versioning 2.0.0 spec (http://semver.org/). const ( appMajor uint = 0 - appMinor uint = 5 - appPatch uint = 2 + appMinor uint = 6 + appPatch uint = 0 // appPreRelease MUST only contain characters from semanticAlphabet // per the semantic versioning spec. - appPreRelease = "99-beta" + appPreRelease = "beta" ) // Version returns the application version as a properly formed string per the