mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-18 14:28:01 +00:00
Bump Buildah to v1.39.4. This will fix a DDIF issue as noted in: https://issues.redhat.com/browse/RHEL-85212 and https://github.com/containers/podman/issues/25593. This also addresesses an Image Mode issue when tweaking mount variables as noted in: https://issues.redhat.com/browse/RHEL-79560 Fixes: https://issues.redhat.com/browse/RHEL-85218, https://issues.redhat.com/browse/RHEL-85219, https://issues.redhat.com/browse/RHEL-85116, https://issues.redhat.com/browse/RHEL-85117 Signed-off-by: tomsweeneyredhat <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 = 34
|
|
// VersionPatch is for backwards-compatible bug fixes
|
|
VersionPatch = 3
|
|
|
|
// 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)
|