fix(go.mod): correct invalid Go version format from 1.25.7 to 1.23
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 <noreply@anthropic.com>
This commit is contained in:
parent
95716b106b
commit
bc91d33e01
1 changed files with 1 additions and 1 deletions
2
go.mod
2
go.mod
|
|
@ -1,6 +1,6 @@
|
||||||
module github.com/sipeed/picoclaw
|
module github.com/sipeed/picoclaw
|
||||||
|
|
||||||
go 1.25.7
|
go 1.23
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/adhocore/gronx v1.19.6
|
github.com/adhocore/gronx v1.19.6
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue