diff --git a/Makefile b/Makefile index caa639b..081de5a 100644 --- a/Makefile +++ b/Makefile @@ -48,7 +48,7 @@ gopath-update: go get -u ./... # NOTE: MUST update version number here prior to running 'make release' and edit this file! -VERS=v0.3.6 +VERS=v0.3.7 PACKAGE=main GIT_COMMIT=`git rev-parse --short HEAD` VERS_DATE=`date -u +%Y-%m-%d\ %H:%M` diff --git a/version.go b/version.go index 8934f0e..3fb8dde 100644 --- a/version.go +++ b/version.go @@ -3,7 +3,7 @@ package main const ( - Version = "v0.3.6" - GitCommit = "c45edd2" // the commit JUST BEFORE the release - VersionDate = "2021-08-28 11:54" // UTC + Version = "v0.3.7" + GitCommit = "691b7e0" // the commit JUST BEFORE the release + VersionDate = "2021-08-29 09:55" // UTC )