Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/spf13/cast

go 1.21.0
go 1.21
Copy link

Copilot AI Jul 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good fix! The Go version directive in go.mod should specify only major.minor versions (e.g., 1.21) rather than including patch versions (e.g., 1.21.0). This follows Go module best practices and prevents toolchain version conflicts during 'go mod tidy' operations.

Copilot uses AI. Check for mistakes.

require github.com/frankban/quicktest v1.14.6

Expand Down
Loading