mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-14 20:59:40 +00:00
Bumping these two in preparation for Podman v4.6 and eventuall RHEL 8.9/9.3 [NO NEW TESTS NEEDED] Signed-off-by: Tom Sweeney <tsweeney@redhat.com>
18 lines
535 B
Go
18 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 = 26
|
|
// VersionPatch is for backwards-compatible bug fixes
|
|
VersionPatch = 0
|
|
|
|
// 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)
|