From c1e7b36b018ad563527cfc49ab64a6d2eaab42af Mon Sep 17 00:00:00 2001 From: Tom Limoncelli Date: Mon, 12 Oct 2020 12:54:40 -0400 Subject: [PATCH] Release v3.4.1 --- main.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/main.go b/main.go index 779bb9a1d..73797f7d2 100644 --- a/main.go +++ b/main.go @@ -13,7 +13,21 @@ import ( //go:generate go run build/generate/generate.go build/generate/featureMatrix.go +// Version management. Goals: +// 1. Someone who just does "go get" has at least some information. +// 2. If built with build/build.go, more specific build information gets put in. +// Update the number here manually each release, so at least we have a range for go-get people. +var ( + SHA = "" + Version = "3.4.1" + BuildTime = "" +) + func main() { + version.SHA = SHA + version.Version = Version + version.BuildTime = BuildTime + log.SetFlags(log.LstdFlags | log.Lshortfile) if info, ok := debug.ReadBuildInfo(); !ok && info == nil { fmt.Fprint(os.Stderr, "Warning: dnscontrol was built without Go modules. See https://github.com/StackExchange/dnscontrol#from-source for more information on how to build dnscontrol correctly.\n\n")