mirror of
https://github.com/containers/skopeo.git
synced 2025-05-10 00:46:46 +00:00
... to include https://github.com/containers/image/pull/1696 and to make sure the release-1.10 branch is not regressing against release-1.9. > go get github.com/containers/image/v5@release-5.23 > make vendor Signed-off-by: Miloslav Trmač <mitr@redhat.com>
19 lines
539 B
Go
19 lines
539 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 = 23
|
|
// VersionPatch is for backwards-compatible bug fixes
|
|
VersionPatch = 1
|
|
|
|
// VersionDev indicates development branch. Releases will be empty string.
|
|
VersionDev = "-dev"
|
|
)
|
|
|
|
// Version is the specification version that the package types support.
|
|
var Version = fmt.Sprintf("%d.%d.%d%s", VersionMajor, VersionMinor, VersionPatch, VersionDev)
|