Skip to content

Commit

Permalink
bring go.mod up-to-date with later go (1.23) compiler, needed to esca…
Browse files Browse the repository at this point in the history
…pe mysterious build errors about needing to run go mod tidy
  • Loading branch information
david-m-nicol committed Sep 19, 2024
1 parent 80e7f00 commit fce1109
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion beta/bld-dir/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module main

go 1.20
go 1.22

require (
github.com/iti/cmdline v0.1.1
Expand Down
5 changes: 3 additions & 2 deletions beta/db/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
module main

go 1.20
go 1.22.0

toolchain go1.23.1

require (
github.com/iti/cmdline v0.1.1
Expand All @@ -17,4 +19,3 @@ require (
gonum.org/v1/gonum v0.15.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

4 changes: 3 additions & 1 deletion beta/sim-dir/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
module main

go 1.20
go 1.21

toolchain go1.23.1

require (
github.com/iti/cmdline v0.1.1
Expand Down
4 changes: 3 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
module main

go 1.20
go 1.21

toolchain go1.23.1

require (
github.com/iti/cmdline v0.1.1
Expand Down

0 comments on commit fce1109

Please sign in to comment.