2017-03-16 07:39:28 +00:00
|
|
|
package params
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2017-05-02 22:10:05 +00:00
|
|
|
VersionMajor = 0 // Major version component of the current release
|
|
|
|
VersionMinor = 9 // Minor version component of the current release
|
|
|
|
VersionPatch = 7 // Patch version component of the current release
|
|
|
|
VersionMeta = "unstable" // Version metadata to append to the version string
|
2017-03-16 07:39:28 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Version exposes string representation of program version.
|
|
|
|
var Version = fmt.Sprintf("%d.%d.%d-%s", VersionMajor, VersionMinor, VersionPatch, VersionMeta)
|