X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=version%2Fversion.go;h=8bde72c371362abc2dd1f917361e80b1ca442a57;hb=280b1c6c83b676ef4e592f4ecf60cb5b54b6a753;hp=eb8063a9623c48180e11742e376356491c7c753f;hpb=f049390060630c0085fe4ad683c83a4a14a47ffb;p=govpp.git 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, )