From bc91d33e01b7c8a016f9a16bd635c8f89f87a011 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=BE=E6=96=87=E9=94=8B0668000834?= Date: Thu, 12 Mar 2026 20:54:04 +0800 Subject: [PATCH] fix(go.mod): correct invalid Go version format from 1.25.7 to 1.23 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The go.mod file had an invalid Go version '1.25.7' which caused 'go mod tidy' to fail on Windows and other platforms. Go version directive must match format 1.XX (e.g., 1.23), not semantic versioning. Fixes #1348 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index f60be046f..2cfef4d5d 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/sipeed/picoclaw -go 1.25.7 +go 1.23 require ( github.com/adhocore/gronx v1.19.6