1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2026-01-26 20:35:56 +00:00

Update minimum supported Go version 1.15 -> 1.17

The latest version of some packages we depend on (golang.org/x/sys,
indirectly) do not support 1.15 anymore.

We kept 1.15 because it's the version on Debian stable, but that release
is more than 2y old, and newer versions are readily available in Debian
stable backports.

So this patch updates the minimum supported Go version to 1.17.
This commit is contained in:
Alberto Bertogli
2022-11-12 18:41:40 +00:00
parent 6896b221e8
commit 4efe8db947
3 changed files with 8 additions and 5 deletions

8
go.mod
View File

@@ -1,6 +1,6 @@
module blitiri.com.ar/go/chasquid
go 1.15
go 1.17
require (
blitiri.com.ar/go/log v1.1.0
@@ -12,6 +12,10 @@ require (
golang.org/x/term v0.2.0
golang.org/x/text v0.4.0
golang.org/x/tools v0.1.12
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/protobuf v1.28.1
)
require (
golang.org/x/sys v0.2.0 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
)