From 63e499f8bd000286ff9726406e4f3b97af9e2f35 Mon Sep 17 00:00:00 2001 From: tomsweeneyredhat Date: Mon, 14 Jul 2025 15:59:20 -0400 Subject: [PATCH] Bump to v5.37.0-dev Bumping main back to the next 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 bfff8a34..26237b0c 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 = 36 + VersionMinor = 37 // 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.