-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bring go.mod up-to-date with later go (1.23) compiler, needed to esca…
…pe mysterious build errors about needing to run go mod tidy
- Loading branch information
1 parent
80e7f00
commit fce1109
Showing
4 changed files
with
10 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|