From 3a15aa4bae60b93b3efaedd3ba41840e58e8acd7 Mon Sep 17 00:00:00 2001 From: Mike Zak Date: Mon, 13 Jan 2020 12:24:36 +0200 Subject: [PATCH] Update version to v0.1.1 --- version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/version.go b/version/version.go index dacdc0b1d..6493f64aa 100644 --- a/version/version.go +++ b/version/version.go @@ -11,7 +11,7 @@ const validCharacters = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrs const ( appMajor uint = 0 appMinor uint = 1 - appPatch uint = 0 + appPatch uint = 1 ) // appBuild is defined as a variable so it can be overridden during the build