Skip to content

Commit

Permalink
fix go version in go.mod
Browse files Browse the repository at this point in the history
Go 1.22 breaks modules that declare go 1.0: golang/go#65528

This PR modifies the Go version in go.mod to 1.14 because
module must run on Go version 1.14 or later, as documented in https://go.dev/doc/modules/gomod-ref
  • Loading branch information
kxxt committed Feb 11, 2024
1 parent ae8f59f commit e196ad6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/danjacques/gofslock

go 1.0
go 1.14

require golang.org/x/sys v0.1.0

0 comments on commit e196ad6

Please sign in to comment.