1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-12-12 08:23:48 +02:00
woodpecker/version/version.go

24 lines
619 B
Go
Raw Normal View History

2016-03-30 09:48:47 +02:00
package version
import "github.com/coreos/go-semver/semver"
2016-03-30 09:48:47 +02:00
2016-04-17 20:14:27 +02:00
var (
2016-03-30 09:48:47 +02:00
// VersionMajor is for an API incompatible changes
VersionMajor int64 = 0
2016-03-30 09:48:47 +02:00
// VersionMinor is for functionality in a backwards-compatible manner
VersionMinor int64 = 6
2016-03-30 09:48:47 +02:00
// VersionPatch is for backwards-compatible bug fixes
VersionPatch int64 = 0
2016-03-30 09:48:47 +02:00
// VersionDev indicates development branch. Releases will be empty string.
VersionDev string
2016-03-30 09:48:47 +02:00
)
// Version is the specification version that the package types support.
var Version = semver.Version{
Major: VersionMajor,
Minor: VersionMinor,
Patch: VersionPatch,
Metadata: VersionDev,
}