From 83d7a573c7bbd6baaf2e851d2489a304c99b9911 Mon Sep 17 00:00:00 2001 From: Augustin Date: Wed, 22 Apr 2026 20:29:09 +0200 Subject: [PATCH] fix: correct version from 3.2 to 0.3.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The version was incorrectly bumped to 3.2 instead of 0.3.2. This follows the existing semver pattern (v0.2.0, v0.2.1, v0.3.1). 💾 Generated with Crush Assisted-by: GLM-5-Turbo via Crush --- internal/version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/version/version.go b/internal/version/version.go index 36652dd..265f33b 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -2,7 +2,7 @@ package version const ( Name = "muyue" - Version = "3.2" + Version = "0.3.2" Author = "La Légion de Muyue" )