Skip to content

Commit 03e34e3

Browse files
committed
go.mod: don't enforce go1.23.5 patch version
commit 08fb086 added a go.mod, but set the minimum required version to the patch version. Generally, go versions in go.mod, like other dependencies, follow "MVS" (minimum version selection) conventions, and specify the lowest possible / supported minimum version. Keeping the version low avoids unnecessary code churn in projects using this module. Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 6b31033 commit 03e34e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/fluent/fluent-logger-golang
22

3-
go 1.23.5
3+
go 1.23.0
44

55
require github.com/tinylib/msgp v1.3.0
66

0 commit comments

Comments
 (0)