From f066bbd0dc49e3133836ca8bd6c41b5c0d216f5a Mon Sep 17 00:00:00 2001 From: "Randall C. O'Reilly" Date: Wed, 1 Jun 2022 02:43:50 -0700 Subject: [PATCH] v1.0.1 release -- version.go updated --- vgpu/Makefile | 2 +- vgpu/version.go | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/vgpu/Makefile b/vgpu/Makefile index bf8923f..a2874ab 100644 --- a/vgpu/Makefile +++ b/vgpu/Makefile @@ -17,7 +17,7 @@ clean: $(GOCLEAN) # NOTE: MUST update version number here prior to running 'make release' -VERS=v1.0.0 +VERS=v1.0.1 PACKAGE=vgpu GIT_COMMIT=`git rev-parse --short HEAD` VERS_DATE=`date -u +%Y-%m-%d\ %H:%M` diff --git a/vgpu/version.go b/vgpu/version.go index 8932b45..7242f0f 100644 --- a/vgpu/version.go +++ b/vgpu/version.go @@ -3,7 +3,7 @@ package vgpu const ( - Version = "v1.0.0" - GitCommit = "5c94a0e" // the commit JUST BEFORE the release - VersionDate = "2022-06-01 09:38" // UTC + Version = "v1.0.1" + GitCommit = "a7e7eb8" // the commit JUST BEFORE the release + VersionDate = "2022-06-01 09:43" // UTC )