From 82e77d4ae7974e634d085f3580d5520fd7e1e018 Mon Sep 17 00:00:00 2001
From: Volker Schukai <volker.schukai@schukai.com>
Date: Mon, 20 May 2024 14:40:46 +0200
Subject: [PATCH] fix: remove versions output

---
 project.nix              | 2 +-
 source/release/struct.go | 6 ------
 2 files changed, 1 insertion(+), 7 deletions(-)

diff --git a/project.nix b/project.nix
index 6bd151d..e5e62c3 100644
--- a/project.nix
+++ b/project.nix
@@ -5,5 +5,5 @@
   supportedSystems = ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"];
   compileForSystems = ["linux/arm64" "linux/amd64" "darwin/amd64" "windows/amd64"];
   modulePath = "gitlab.schukai.com/oss/bob";
-  version = "0.5.5"; ## do not change this line; it will be updated automatically
+  version = "0.5.6"; ## do not change this line; it will be updated automatically
 }
diff --git a/source/release/struct.go b/source/release/struct.go
index f10321f..b9af631 100644
--- a/source/release/struct.go
+++ b/source/release/struct.go
@@ -1,9 +1,5 @@
 package release
 
-import (
-	"fmt"
-)
-
 var (
 	version   = "-/-"
 	commit    = "-/-"
@@ -32,8 +28,6 @@ var release ReleaseStruct
 
 func init() {
 
-	fmt.Println("Version: " + version)
-
 	release = ReleaseStruct{
 		Version:   version,
 		BuildDate: buildDate,
-- 
GitLab