woodpecker/version/version.go

26 lines
721 B
Go
Raw Normal View History

2016-03-30 07:48:47 +00:00
package version
import "github.com/coreos/go-semver/semver"
2016-03-30 07:48:47 +00:00
2016-04-17 18:14:27 +00:00
var (
2016-03-30 07:48:47 +00:00
// VersionMajor is for an API incompatible changes
2017-04-12 18:26:52 +00:00
VersionMajor int64
2016-03-30 07:48:47 +00:00
// VersionMinor is for functionality in a backwards-compatible manner
2017-05-24 14:45:56 +00:00
VersionMinor int64 = 7
2016-03-30 07:48:47 +00:00
// VersionPatch is for backwards-compatible bug fixes
2017-06-26 20:41:04 +00:00
VersionPatch int64 = 3
2017-04-12 18:26:52 +00:00
// VersionPre indicates prerelease
2017-05-10 08:45:24 +00:00
VersionPre string
2016-03-30 07:48:47 +00:00
// VersionDev indicates development branch. Releases will be empty string.
VersionDev string
2016-03-30 07:48:47 +00:00
)
// Version is the specification version that the package types support.
var Version = semver.Version{
2017-04-12 18:26:52 +00:00
Major: VersionMajor,
Minor: VersionMinor,
Patch: VersionPatch,
PreRelease: semver.PreRelease(VersionPre),
Metadata: VersionDev,
}