Skip to content

Commit 3fb92b0

Browse files
committed
go.mod: bump to go1.17
Already EOL but the minimal requirement to build vgrep now. Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
1 parent 225e2ed commit 3fb92b0

File tree

20 files changed

+22
-105
lines changed

20 files changed

+22
-105
lines changed

go.mod

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,19 @@ require (
44
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
55
github.com/jessevdk/go-flags v1.5.0
66
github.com/json-iterator/go v1.1.12
7-
github.com/kr/pretty v0.1.0 // indirect
8-
github.com/mattn/go-runewidth v0.0.13 // indirect
97
github.com/mattn/go-shellwords v1.0.12
108
github.com/nightlyone/lockfile v1.0.0
119
github.com/peterh/liner v1.2.2
1210
github.com/sirupsen/logrus v1.9.0
1311
golang.org/x/term v0.5.0
14-
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
1512
)
1613

17-
go 1.13
14+
require (
15+
github.com/mattn/go-runewidth v0.0.13 // indirect
16+
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
17+
github.com/modern-go/reflect2 v1.0.2 // indirect
18+
github.com/rivo/uniseg v0.2.0 // indirect
19+
golang.org/x/sys v0.5.0 // indirect
20+
)
21+
22+
go 1.17

go.sum

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@ github.com/jessevdk/go-flags v1.5.0 h1:1jKYvbxEjfUl0fmqTCOfonvskHHXMjBySTLW4y9LF
88
github.com/jessevdk/go-flags v1.5.0/go.mod h1:Fw0T6WPc1dYxT4mKEZRfG5kJhaTDP9pj1c2EWnYs/m4=
99
github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=
1010
github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo=
11-
github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=
12-
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
13-
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
14-
github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=
15-
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
1611
github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU=
1712
github.com/mattn/go-runewidth v0.0.13 h1:lTGmDsbAYt5DmK6OnoV7EuIF1wEIFAcxld6ypU4OSgU=
1813
github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
@@ -44,7 +39,5 @@ golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
4439
golang.org/x/term v0.5.0 h1:n2a8QNdAb0sZNpU9R1ALUXBbY+w51fCQDN+7EdxNBsY=
4540
golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k=
4641
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
47-
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY=
48-
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
4942
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo=
5043
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

vendor/github.com/google/shlex/go.mod

Lines changed: 0 additions & 3 deletions
This file was deleted.

vendor/github.com/jessevdk/go-flags/go.mod

Lines changed: 0 additions & 5 deletions
This file was deleted.

vendor/github.com/jessevdk/go-flags/go.sum

Lines changed: 0 additions & 2 deletions
This file was deleted.

vendor/github.com/json-iterator/go/go.mod

Lines changed: 0 additions & 11 deletions
This file was deleted.

vendor/github.com/json-iterator/go/go.sum

Lines changed: 0 additions & 14 deletions
This file was deleted.

vendor/github.com/mattn/go-runewidth/go.mod

Lines changed: 0 additions & 5 deletions
This file was deleted.

vendor/github.com/mattn/go-runewidth/go.sum

Lines changed: 0 additions & 2 deletions
This file was deleted.

vendor/github.com/mattn/go-shellwords/go.mod

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)