From a163f9cc0ed6f63873013772662fa76d07b5985c Mon Sep 17 00:00:00 2001 From: "M. Mert Yildiran" Date: Thu, 25 May 2023 20:42:57 +0300 Subject: [PATCH] :zap: Change the new release warning --- misc/version/versionCheck.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/version/versionCheck.go b/misc/version/versionCheck.go index c835d1249..0098c3eae 100644 --- a/misc/version/versionCheck.go +++ b/misc/version/versionCheck.go @@ -44,7 +44,7 @@ func CheckNewerVersion() { } else { downloadCommand = fmt.Sprintf("sh <(curl -Ls %s/install)", misc.Website) } - msg := fmt.Sprintf("There is a new release! %v -> %v run:", misc.Ver, latestVersion) + msg := fmt.Sprintf("There is a new release! %v -> %v Please upgrade to the latest release, as new releases are not always backward compatible. Run:", misc.Ver, latestVersion) log.Warn().Str("command", downloadCommand).Msg(fmt.Sprintf(utils.Yellow, msg)) } }