mirror of
https://github.com/containers/skopeo.git
synced 2025-05-12 09:54:41 +00:00
... in JFrog Artifactory may fail Addresses: https://github.com/containers/skopeo/issues/2346 and needed if everupgrading from v1.14 in Fedora Signed-off-by: tomsweeneyredhat <tsweeney@redhat.com>
19 lines
535 B
Go
19 lines
535 B
Go
package version
|
|
|
|
import "fmt"
|
|
|
|
const (
|
|
// VersionMajor is for an API incompatible changes
|
|
VersionMajor = 5
|
|
// VersionMinor is for functionality in a backwards-compatible manner
|
|
VersionMinor = 30
|
|
// VersionPatch is for backwards-compatible bug fixes
|
|
VersionPatch = 2
|
|
|
|
// VersionDev indicates development branch. Releases will be empty string.
|
|
VersionDev = ""
|
|
)
|
|
|
|
// Version is the specification version that the package types support.
|
|
var Version = fmt.Sprintf("%d.%d.%d%s", VersionMajor, VersionMinor, VersionPatch, VersionDev)
|