Skip to content

Commit 97b0f76

Browse files
authored
Upgrade Go to 1.17 (#273)
1 parent 375b9a7 commit 97b0f76

File tree

9 files changed

+18
-802
lines changed

9 files changed

+18
-802
lines changed

go.mod

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module knative.dev/kn-plugin-quickstart
22

3-
go 1.16
3+
go 1.17
44

55
require (
66
github.com/spf13/cobra v1.3.0
@@ -9,3 +9,11 @@ require (
99
knative.dev/hack v0.0.0-20220411131823-6ffd8417de7c
1010

1111
)
12+
13+
require (
14+
github.com/google/go-cmp v0.5.7 // indirect
15+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
16+
github.com/mitchellh/go-homedir v1.1.0 // indirect
17+
github.com/pkg/errors v0.9.1 // indirect
18+
github.com/spf13/pflag v1.0.5 // indirect
19+
)

vendor/github.com/mitchellh/go-homedir/go.mod

Lines changed: 0 additions & 1 deletion
This file was deleted.

vendor/github.com/spf13/cobra/go.mod

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

vendor/github.com/spf13/cobra/go.sum

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

vendor/github.com/spf13/pflag/go.mod

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

vendor/github.com/spf13/pflag/go.sum

Whitespace-only changes.

vendor/knative.dev/hack/go.mod

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

vendor/knative.dev/hack/go.sum

Whitespace-only changes.

vendor/modules.txt

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,36 @@
11
# github.com/google/go-cmp v0.5.7
2+
## explicit; go 1.11
23
github.com/google/go-cmp/cmp
34
github.com/google/go-cmp/cmp/internal/diff
45
github.com/google/go-cmp/cmp/internal/flags
56
github.com/google/go-cmp/cmp/internal/function
67
github.com/google/go-cmp/cmp/internal/value
78
# github.com/inconshreveable/mousetrap v1.0.0
9+
## explicit
810
github.com/inconshreveable/mousetrap
911
# github.com/mitchellh/go-homedir v1.1.0
12+
## explicit
1013
github.com/mitchellh/go-homedir
1114
# github.com/pkg/errors v0.9.1
15+
## explicit
1216
github.com/pkg/errors
1317
# github.com/spf13/cobra v1.3.0
14-
## explicit
18+
## explicit; go 1.15
1519
github.com/spf13/cobra
1620
# github.com/spf13/pflag v1.0.5
21+
## explicit; go 1.12
1722
github.com/spf13/pflag
1823
# gotest.tools/v3 v3.1.0
19-
## explicit
24+
## explicit; go 1.11
2025
gotest.tools/v3/assert
2126
gotest.tools/v3/assert/cmp
2227
gotest.tools/v3/internal/assert
2328
gotest.tools/v3/internal/difflib
2429
gotest.tools/v3/internal/format
2530
gotest.tools/v3/internal/source
2631
# knative.dev/client v0.30.2-0.20220412171308-b4e95db7a3af
27-
## explicit
32+
## explicit; go 1.16
2833
knative.dev/client/pkg/kn/plugin
2934
# knative.dev/hack v0.0.0-20220411131823-6ffd8417de7c
30-
## explicit
35+
## explicit; go 1.14
3136
knative.dev/hack

0 commit comments

Comments
 (0)