From 659d8298d95284144ee78c8f16d0c3da3e9df723 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Fri, 13 Mar 2026 20:02:07 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20Remove=20deprecated=20version=20?= =?UTF-8?q?helper=20functions=20in=20internal=20package?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: hobbyistlabs-coder <267281733+hobbyistlabs-coder@users.noreply.github.com> --- cmd/picoclaw/internal/helpers.go | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/cmd/picoclaw/internal/helpers.go b/cmd/picoclaw/internal/helpers.go index b6ab2413c..e1d4f3664 100644 --- a/cmd/picoclaw/internal/helpers.go +++ b/cmd/picoclaw/internal/helpers.go @@ -30,20 +30,5 @@ func LoadConfig() (*config.Config, error) { return config.LoadConfig(GetConfigPath()) } -// FormatVersion returns the version string with optional git commit -// Deprecated: Use pkg/config.FormatVersion instead -func FormatVersion() string { - return config.FormatVersion() -} -// FormatBuildInfo returns build time and go version info -// Deprecated: Use pkg/config.FormatBuildInfo instead -func FormatBuildInfo() (string, string) { - return config.FormatBuildInfo() -} -// GetVersion returns the version string -// Deprecated: Use pkg/config.GetVersion instead -func GetVersion() string { - return config.GetVersion() -}