From 8d65e0e36c6f9904a228c2a4c3a0b9f6314159af Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Tue, 29 Apr 2025 14:05:52 +0200 Subject: [PATCH] bump main to 5.6-dev Also remove the outdated comment that said to update the version in the README.md file, that is no longer there since commit 8e7f98ae65 ("docs(readme): add status badges and remove hardcoded release info"). Signed-off-by: Paul Holzinger --- version/rawversion/version.go | 5 +---- version/version.go | 3 --- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/version/rawversion/version.go b/version/rawversion/version.go index 7c121fa3d3..506de48461 100644 --- a/version/rawversion/version.go +++ b/version/rawversion/version.go @@ -4,7 +4,4 @@ package rawversion // // This indirection is needed to prevent semver packages from bloating // Quadlet's binary size. -// -// NOTE: remember to bump the version at the top of the top-level README.md -// file when this is bumped. -const RawVersion = "5.5.0-dev" +const RawVersion = "5.6.0-dev" diff --git a/version/version.go b/version/version.go index 5bd86b1af2..bb35b6c73d 100644 --- a/version/version.go +++ b/version/version.go @@ -25,9 +25,6 @@ const ( ) // Version is the version of the build. -// NOTE: remember to bump the version at the top -// of the top-level README.md file when this is -// bumped. var Version = semver.MustParse(rawversion.RawVersion) // See https://docs.docker.com/engine/api/v1.40/