1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-06-30 22:13:45 +02:00
Files
woodpecker/version/version.go

40 lines
1.3 KiB
Go
Raw Normal View History

2018-02-19 14:24:10 -08:00
// Copyright 2018 Drone.IO Inc.
2018-03-21 14:02:17 +01:00
//
2018-02-19 14:24:10 -08: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 14:02:17 +01:00
//
2018-02-19 14:24:10 -08:00
// http://www.apache.org/licenses/LICENSE-2.0
2018-03-21 14:02:17 +01:00
//
2018-02-19 14:24:10 -08: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 00:48:47 -07:00
package version
import "github.com/coreos/go-semver/semver"
2016-03-30 00:48:47 -07:00
2016-04-17 11:14:27 -07:00
var (
2017-09-11 15:53:57 -07:00
// VersionMajor is for an API incompatible changes.
2017-04-12 20:26:52 +02:00
VersionMajor int64
2017-09-11 15:53:57 -07:00
// VersionMinor is for functionality in a backwards-compatible manner.
2017-06-28 13:21:22 -04:00
VersionMinor int64 = 8
2017-09-11 15:53:57 -07:00
// VersionPatch is for backwards-compatible bug fixes.
2018-11-15 13:02:09 -08:00
VersionPatch int64 = 9
2017-09-11 15:53:57 -07:00
// VersionPre indicates prerelease.
VersionPre string
2016-03-30 00:48:47 -07:00
// VersionDev indicates development branch. Releases will be empty string.
VersionDev string
2016-03-30 00:48:47 -07:00
)
// Version is the specification version that the package types support.
var Version = semver.Version{
2017-04-12 20:26:52 +02:00
Major: VersionMajor,
Minor: VersionMinor,
Patch: VersionPatch,
PreRelease: semver.PreRelease(VersionPre),
Metadata: VersionDev,
}