From b5a758762648206fee99d125deea00fae407af4f Mon Sep 17 00:00:00 2001 From: tomsweeneyredhat Date: Sat, 18 May 2024 16:37:04 -0400 Subject: [PATCH 1/2] Bump c/image to v5.31.0 As the title says. This is readying for Podman v5.1 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 fc8329b21..0b5c3bd7a 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 = 30 + VersionMinor = 31 // VersionPatch is for backwards-compatible bug fixes - VersionPatch = 2 + VersionPatch = 0 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "-dev" + VersionDev = "" ) // Version is the specification version that the package types support. From ec3f0e5bc3357daee9362e470eb74ece5e887d54 Mon Sep 17 00:00:00 2001 From: tomsweeneyredhat Date: Sat, 18 May 2024 16:40:11 -0400 Subject: [PATCH 2/2] Bump c/image to v5.31.1-dev Bump back to a dev version for the main branch. Signed-off-by: tomsweeneyredhat --- version/version.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version/version.go b/version/version.go index 0b5c3bd7a..46f269b6e 100644 --- a/version/version.go +++ b/version/version.go @@ -8,10 +8,10 @@ const ( // VersionMinor is for functionality in a backwards-compatible manner VersionMinor = 31 // VersionPatch is for backwards-compatible bug fixes - VersionPatch = 0 + VersionPatch = 1 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "" + VersionDev = "-dev" ) // Version is the specification version that the package types support.