2016-01-05 22:56:27 +00:00
|
|
|
package specs
|
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
|
|
|
|
const (
|
|
|
|
// VersionMajor is for an API incompatible changes
|
|
|
|
VersionMajor = 0
|
|
|
|
// VersionMinor is for functionality in a backwards-compatible manner
|
2016-03-07 18:30:59 +00:00
|
|
|
VersionMinor = 4
|
2016-01-05 22:56:27 +00:00
|
|
|
// VersionPatch is for backwards-compatible bug fixes
|
|
|
|
VersionPatch = 0
|
2016-02-11 19:23:35 +00:00
|
|
|
|
|
|
|
// VersionDev indicates development branch. Releases will be empty string.
|
2016-03-15 18:19:21 +00:00
|
|
|
VersionDev = ""
|
2016-01-05 22:56:27 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Version is the specification version that the package types support.
|
2016-02-11 19:23:35 +00:00
|
|
|
var Version = fmt.Sprintf("%d.%d.%d%s", VersionMajor, VersionMinor, VersionPatch, VersionDev)
|