mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-11 19:48:04 +00:00
17 lines
382 B
Go
17 lines
382 B
Go
package version
|
|
|
|
import "fmt"
|
|
|
|
var (
|
|
// major is for an API incompatible changes
|
|
major = 1
|
|
// minor is for functionality in a backwards-compatible manner
|
|
minor = 0
|
|
// patch is for backwards-compatible bug fixes
|
|
patch = 0
|
|
)
|
|
|
|
// String returns the supporeted specification versions in string format.
|
|
func String() string {
|
|
return fmt.Sprintf("%d.%d.%d", major, minor, patch)
|
|
}
|