mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-17 21:27:52 +00:00
Vendor in c/storage v1.45.5 Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=2177925 and https://bugzilla.redhat.com/show_bug.cgi?id=2176833 "Podman containers do not start after upgrade to v4.4.1 " ZeroDay BZs for RHEL 8.8 and 9.2 Repushed with v1.45.5 after it was found that v1.45.4 was built incorrectly from main. [NO NEW TESTS NEEDED] Signed-off-by: tomsweeneyredhat <tsweeney@redhat.com>
18 lines
537 B
Go
18 lines
537 B
Go
package specs
|
|
|
|
import "fmt"
|
|
|
|
const (
|
|
// VersionMajor is for an API incompatible changes
|
|
VersionMajor = 1
|
|
// VersionMinor is for functionality in a backwards-compatible manner
|
|
VersionMinor = 1
|
|
// VersionPatch is for backwards-compatible bug fixes
|
|
VersionPatch = 0
|
|
|
|
// VersionDev indicates development branch. Releases will be empty string.
|
|
VersionDev = "-rc.1"
|
|
)
|
|
|
|
// Version is the specification version that the package types support.
|
|
var Version = fmt.Sprintf("%d.%d.%d%s", VersionMajor, VersionMinor, VersionPatch, VersionDev)
|