From 2bb100c87b885cf5926b2e6148946e89ce522cb2 Mon Sep 17 00:00:00 2001 From: "Stephen McQuay (smcquay)" Date: Thu, 8 Mar 2018 15:12:08 -0800 Subject: [PATCH] set Version to "unset" so that it's overwritten in make --- hw.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw.go b/hw.go index d325d8d..b3b9d55 100644 --- a/hw.go +++ b/hw.go @@ -2,7 +2,7 @@ package hw import "net/http" -const Version = "v0.1.2" +var Version = "unset" // OK simply return 200 func OK(w http.ResponseWriter, req *http.Request) {}