From 93256e0942a6a21c06c70e7e43ac6ebef585e949 Mon Sep 17 00:00:00 2001 From: TomSweeneyRedHat Date: Thu, 16 Nov 2023 11:42:04 -0500 Subject: [PATCH] Bump to v5.29.0 As the title says, bumping to v5.29.0 in preparation of Podman v4.8 Signed-off-by: TomSweeneyRedHat --- version/version.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/version/version.go b/version/version.go index e93746e56..990f0a96d 100644 --- a/version/version.go +++ b/version/version.go @@ -6,12 +6,12 @@ const ( // VersionMajor is for an API incompatible changes VersionMajor = 5 // VersionMinor is for functionality in a backwards-compatible manner - VersionMinor = 28 + VersionMinor = 29 // VersionPatch is for backwards-compatible bug fixes - VersionPatch = 1 + VersionPatch = 0 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "-dev" + VersionDev = "" ) // Version is the specification version that the package types support.