From f4f96c9daecbbdb187c57b856ac33f5ba8c80227 Mon Sep 17 00:00:00 2001 From: "Sascha L. Teichmann" Date: Wed, 13 Apr 2022 16:12:35 +0200 Subject: [PATCH] Moved SemVersion to separate file. --- util/version.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 util/version.go diff --git a/util/version.go b/util/version.go new file mode 100644 index 0000000..45d60b8 --- /dev/null +++ b/util/version.go @@ -0,0 +1,13 @@ +// This file is Free Software under the MIT License +// without warranty, see README.md and LICENSES/MIT.txt for details. +// +// SPDX-License-Identifier: MIT +// +// SPDX-FileCopyrightText: 2022 German Federal Office for Information Security (BSI) +// Software-Engineering: 2022 Intevation GmbH + +package util + +// SemVersion the version in semver.org format, MUST be overwritten during +// the linking stage of the build process +var SemVersion = "0.0.0"