From a1568d2dde5fdbe4b2b4cbd92764d7712fd19a2b Mon Sep 17 00:00:00 2001 From: "Randall C. O'Reilly" Date: Sun, 15 Mar 2020 19:14:15 -0700 Subject: [PATCH] v1.0.2 release -- version.go updated --- vfilter/Makefile | 2 +- vfilter/version.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/vfilter/Makefile b/vfilter/Makefile index 6708951..29cdf21 100644 --- a/vfilter/Makefile +++ b/vfilter/Makefile @@ -17,7 +17,7 @@ clean: $(GOCLEAN) # NOTE: MUST update version number here prior to running 'make release' -VERS=v1.0.1 +VERS=v1.0.2 PACKAGE=vfilter GIT_COMMIT=`git rev-parse --short HEAD` VERS_DATE=`date -u +%Y-%m-%d\ %H:%M` diff --git a/vfilter/version.go b/vfilter/version.go index 615f656..9d05000 100644 --- a/vfilter/version.go +++ b/vfilter/version.go @@ -3,8 +3,8 @@ package vfilter const ( - Version = "v1.0.1" - GitCommit = "940d0e0" // the commit JUST BEFORE the release + Version = "v1.0.2" + GitCommit = "6196d68" // the commit JUST BEFORE the release VersionDate = "2020-03-16 02:14" // UTC )