From 07f0fd0fdc0d8d5f503a24931afa28707366655d Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Fri, 28 Feb 2020 09:44:34 -0800 Subject: [PATCH] version: add a manual date as version for now Maybe we'll auto-bump this with a bot over time. See golang/go#37475 & golang/go#29814 Signed-off-by: Brad Fitzpatrick --- version/version.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version/version.go b/version/version.go index 1bc61d6629cbc..a15923ad964f5 100644 --- a/version/version.go +++ b/version/version.go @@ -7,5 +7,5 @@ // Package version provides the version that the binary was built at. package version -const LONG = "LONGVER-TODO" -const SHORT = "SHORTVER-TODO" +const LONG = "date.20200228" +const SHORT = LONG // TODO: unused; remove SHORT? Make it a func?