2019-02-19 23:56:41 +00:00
|
|
|
// Copyright 2019 Drone IO, Inc.
|
2019-02-20 02:48:39 +00:00
|
|
|
// Copyright 2016 The Linux Foundation
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2016-03-30 07:48:47 +00:00
|
|
|
package version
|
|
|
|
|
2017-04-12 11:04:39 +00:00
|
|
|
import "github.com/coreos/go-semver/semver"
|
2016-03-30 07:48:47 +00:00
|
|
|
|
2016-04-17 18:14:27 +00:00
|
|
|
var (
|
2019-02-19 23:56:41 +00:00
|
|
|
// GitRepository is the git repository that was compiled
|
|
|
|
GitRepository string
|
|
|
|
// GitCommit is the git commit that was compiled
|
|
|
|
GitCommit string
|
2017-09-11 22:53:57 +00:00
|
|
|
// VersionMajor is for an API incompatible changes.
|
2021-05-04 21:08:30 +00:00
|
|
|
VersionMajor int64 = 2
|
2017-09-11 22:53:57 +00:00
|
|
|
// VersionMinor is for functionality in a backwards-compatible manner.
|
2021-08-24 14:37:33 +00:00
|
|
|
VersionMinor int64 = 1
|
2017-09-11 22:53:57 +00:00
|
|
|
// VersionPatch is for backwards-compatible bug fixes.
|
2021-08-24 14:37:33 +00:00
|
|
|
VersionPatch int64 = 0
|
2017-09-11 22:53:57 +00:00
|
|
|
// VersionPre indicates prerelease.
|
2019-03-19 23:17:40 +00:00
|
|
|
VersionPre = ""
|
2016-03-30 07:48:47 +00:00
|
|
|
// VersionDev indicates development branch. Releases will be empty string.
|
2017-04-12 11:04:39 +00:00
|
|
|
VersionDev string
|
2016-03-30 07:48:47 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Version is the specification version that the package types support.
|
2017-04-12 11:04:39 +00:00
|
|
|
var Version = semver.Version{
|
2017-04-12 18:26:52 +00:00
|
|
|
Major: VersionMajor,
|
|
|
|
Minor: VersionMinor,
|
|
|
|
Patch: VersionPatch,
|
|
|
|
PreRelease: semver.PreRelease(VersionPre),
|
|
|
|
Metadata: VersionDev,
|
2017-04-12 11:04:39 +00:00
|
|
|
}
|