From 2db28783c3f793b16696d610909cd3d48a01475c Mon Sep 17 00:00:00 2001 From: tomsweeneyredhat Date: Thu, 25 Jul 2024 18:21:50 -0400 Subject: [PATCH] Bump to c/image v5.33.0-dev As the title says. Bumping the main branch back to a dev version. 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 4d889f80..d98e04b9 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 = 32 + VersionMinor = 33 // VersionPatch is for backwards-compatible bug fixes VersionPatch = 0 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "" + VersionDev = "-dev" ) // Version is the specification version that the package types support.