2020-02-10 17:00:30 +00:00
|
|
|
// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// Package version provides the version that the binary was built at.
|
|
|
|
package version
|
|
|
|
|
2020-10-27 04:23:58 +00:00
|
|
|
// Long is a full version number for this build, of the form
|
|
|
|
// "x.y.z-commithash", or "date.yyyymmdd" if no actual version was
|
|
|
|
// provided.
|
2021-10-04 16:56:41 +01:00
|
|
|
var Long = "date.20211004"
|
2020-10-27 04:23:58 +00:00
|
|
|
|
|
|
|
// Short is a short version number for this build, of the form
|
|
|
|
// "x.y.z", or "date.yyyymmdd" if no actual version was provided.
|
2021-06-03 19:19:29 +01:00
|
|
|
var Short = ""
|
2020-10-27 04:23:58 +00:00
|
|
|
|
2021-06-03 19:19:29 +01:00
|
|
|
func init() {
|
|
|
|
if Short == "" {
|
|
|
|
// If it hasn't been link-stamped with -X:
|
|
|
|
Short = Long
|
|
|
|
}
|
|
|
|
}
|
2020-10-27 04:23:58 +00:00
|
|
|
|
|
|
|
// GitCommit, if non-empty, is the git commit of the
|
|
|
|
// github.com/tailscale/tailscale repository at which Tailscale was
|
|
|
|
// built. Its format is the one returned by `git describe --always
|
|
|
|
// --exclude "*" --dirty --abbrev=200`.
|
2021-06-02 09:05:13 +01:00
|
|
|
var GitCommit = ""
|
2020-10-27 04:23:58 +00:00
|
|
|
|
|
|
|
// ExtraGitCommit, if non-empty, is the git commit of a "supplemental"
|
|
|
|
// repository at which Tailscale was built. Its format is the same as
|
2020-10-28 23:29:26 +00:00
|
|
|
// gitCommit.
|
2020-10-27 04:23:58 +00:00
|
|
|
//
|
2020-10-28 23:29:26 +00:00
|
|
|
// ExtraGitCommit is used to track the source revision when the main
|
2020-10-27 04:23:58 +00:00
|
|
|
// Tailscale repository is integrated into and built from another
|
|
|
|
// repository (for example, Tailscale's proprietary code, or the
|
2020-10-28 23:29:26 +00:00
|
|
|
// Android OSS repository). Together, GitCommit and ExtraGitCommit
|
2020-10-27 04:23:58 +00:00
|
|
|
// exactly describe what repositories and commits were used in a
|
|
|
|
// build.
|
2021-06-02 09:05:13 +01:00
|
|
|
var ExtraGitCommit = ""
|