Skip to content

Commit f5d3ff5

Browse files
committed
fix(pkg): Change package variables from const to var for build ldflags.
Signed-off-by: spbsoluble <[email protected]>
1 parent 6962dba commit f5d3ff5

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

pkg/version/version.go

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414

1515
package version
1616

17-
const VERSION = "1.6.0"
18-
const BUILD_DATE = "2024-03-25"
19-
const COMMIT = "HEAD"
17+
var (
18+
VERSION = "1.6.0"
19+
BUILD_DATE = "2024-03-25"
20+
COMMIT = "HEAD"
21+
)

0 commit comments

Comments
 (0)