build: bump version to 0.6-beta

This commit is contained in:
Olaoluwa Osuntokun 2019-04-03 15:48:17 -07:00
parent 30f2b1ca01
commit 2cc6687ff3
No known key found for this signature in database
GPG Key ID: CE58F7F8E20FD9A2

View File

@ -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