From 34875171e6ca5ca1d2cbd9ad1b03c8c35b784102 Mon Sep 17 00:00:00 2001 From: Mike Zak Date: Wed, 16 Mar 2022 16:44:32 +0200 Subject: [PATCH] Update version.go --- README.md | 2 +- version/version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 05ec2b2d..e6ae1b64 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ This project is currently under active development and is in Beta state. ## Requirements -Latest version of [Go](http://golang.org) (currently 1.16) +Latest version of [Go](http://golang.org) (currently 1.17) ## Getting Started diff --git a/version/version.go b/version/version.go index 41f6b623..fef97948 100644 --- a/version/version.go +++ b/version/version.go @@ -11,7 +11,7 @@ const validCharacters = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrs const ( appMajor uint = 0 appMinor uint = 11 - appPatch uint = 11 + appPatch uint = 13 ) // appBuild is defined as a variable so it can be overridden during the build