From 3f198746ad5ab434b81f0f15447ac0f382471954 Mon Sep 17 00:00:00 2001 From: Alex Bosworth Date: Wed, 9 Sep 2020 10:51:44 -0700 Subject: [PATCH] version: bump to 0.9.0-beta Increment version for new features --- version.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version.go b/version.go index 67dc9f2..0120582 100644 --- a/version.go +++ b/version.go @@ -22,8 +22,8 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr // versioning 2.0.0 spec (http://semver.org/). const ( appMajor uint = 0 - appMinor uint = 8 - appPatch uint = 1 + appMinor uint = 9 + appPatch uint = 0 // appPreRelease MUST only contain characters from semanticAlphabet per // the semantic versioning spec.