mirror of
https://github.com/containers/skopeo.git
synced 2025-05-10 08:55:09 +00:00
add the possibility to specify the format and the level to use when compressing blobs. Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
19 lines
538 B
Go
19 lines
538 B
Go
package version
|
|
|
|
import "fmt"
|
|
|
|
const (
|
|
// VersionMajor is for an API incompatible changes
|
|
VersionMajor = 3
|
|
// VersionMinor is for functionality in a backwards-compatible manner
|
|
VersionMinor = 0
|
|
// VersionPatch is for backwards-compatible bug fixes
|
|
VersionPatch = 3
|
|
|
|
// 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)
|