status-go/geth/params/version.go

16 lines
513 B
Go
Raw Normal View History

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
)
// Version exposes string representation of program version.
var Version = fmt.Sprintf("%d.%d.%d-%s", VersionMajor, VersionMinor, VersionPatch, VersionMeta)