1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-08-08 22:36:49 +02:00

Specify a go release minor version

Since they started releasing .0 versions with 1.21.0, the go version
need to be a full release version specifier and not a go language
version. They relented and added support for defaulting to a .0 release
if none is specified in later 1.23.x releases, but for users with local
1.21 or 1.22 toolchains the lack of a full release specifier breaks
them. And going forwards this is more technically correct anyway.

See https://github.com/golang/go/issues/62278#issuecomment-1693620853
This commit is contained in:
Kevin Radloff
2025-03-13 08:02:41 -04:00
parent 1107462c3e
commit 14ba0e7523

2
go.mod
View File

@ -1,6 +1,6 @@
module github.com/jesseduffield/lazygit
go 1.24
go 1.24.0
require (
github.com/adrg/xdg v0.4.0