mirror of
https://github.com/containers/image.git
synced 2025-04-18 19:44:05 +03:00
Bump c/image back to a dev version, v5.35.0-dev Signed-off-by: tomsweeneyredhat <tsweeney@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 = 35
|
|
// VersionPatch is for backwards-compatible bug fixes
|
|
VersionPatch = 0
|
|
|
|
// 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)
|