From d4b741fd7c03aee57f3329b8cf8ef6748e543080 Mon Sep 17 00:00:00 2001 From: Ori Newman Date: Thu, 16 Jun 2022 12:54:38 +0300 Subject: [PATCH] Bump version to v0.12.2 (#2086) --- version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/version.go b/version/version.go index 2edacab9c..1df34d5d6 100644 --- a/version/version.go +++ b/version/version.go @@ -11,7 +11,7 @@ const validCharacters = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrs const ( appMajor uint = 0 appMinor uint = 12 - appPatch uint = 1 + appPatch uint = 2 ) // appBuild is defined as a variable so it can be overridden during the build