aboutsummaryrefslogtreecommitdiffstats
path: root/version/version.go
diff options
context:
space:
mode:
Diffstat (limited to 'version/version.go')
-rw-r--r--version/version.go23
1 files changed, 15 insertions, 8 deletions
diff --git a/version/version.go b/version/version.go
index eb8063a..8bde72c 100644
--- a/version/version.go
+++ b/version/version.go
@@ -21,14 +21,17 @@ import (
"time"
)
+// Following variables should normally be updated via `-ldflags "-X ..."`.
+// However, the version string is hard-coded to ensure it is always included
+// even with bare go build/install.
var (
- name = "govpp"
- version = "v0.3.5"
- commitHash = "unknown"
- buildBranch = "HEAD"
- buildStamp = ""
- buildUser = ""
- buildHost = ""
+ name = "govpp"
+ version = "v0.4.0-dev"
+ commit = "unknown"
+ branch = "HEAD"
+ buildStamp = ""
+ buildUser = ""
+ buildHost = ""
buildDate time.Time
)
@@ -41,6 +44,10 @@ func init() {
buildDate = time.Unix(buildstampInt64, 0)
}
+func Version() string {
+ return version
+}
+
func Info() string {
return fmt.Sprintf(`%s %s`, name, version)
}
@@ -54,7 +61,7 @@ func Verbose() string {
Build date: %s
Go runtime: %s (%s/%s)`,
name,
- version, buildBranch, commitHash,
+ version, branch, commit,
buildUser, buildHost, buildDate.Format(time.UnixDate),
runtime.Version(), runtime.GOOS, runtime.GOARCH,
)