From 158b287a5f195c67f62f33d59de5fe503298f8b9 Mon Sep 17 00:00:00 2001 From: Lukasz Janyst Date: Sat, 1 Jan 2022 17:26:06 +0100 Subject: [PATCH] cleanup: Hardcode release info constants Fixes #1 --- pkg/constants/constants.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/constants/constants.go b/pkg/constants/constants.go index 41458a8..1b7c310 100644 --- a/pkg/constants/constants.go +++ b/pkg/constants/constants.go @@ -25,13 +25,13 @@ const VendorName = "protonmail" // nolint[gochecknoglobals] var ( // Version of the build. - Version = "" + Version = "1000.1000.1000+git" // Revision is current hash of the build. - Revision = "" + Revision = "bf2a7aaf0f" // BuildTime stamp of the build. - BuildTime = "" + BuildTime = "2022-01-01T17:20:35+0100" // BuildVersion is derived from LongVersion and BuildTime. BuildVersion = fmt.Sprintf("%v (%v) %v", Version, Revision, BuildTime)