-
-
Notifications
You must be signed in to change notification settings - Fork 389
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump go version to go 1.17.8 (#1567)
* bump go version we use to build and release to go 1.17.8 Co-authored-by: per1234 <[email protected]> * bump go version in go.mod * bump go version in GH Actions workflows * bump go version in the docs Co-authored-by: per1234 <[email protected]>
- Loading branch information
Showing
15 changed files
with
150 additions
and
18 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
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
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
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
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
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,10 +1,29 @@ | ||
module github.com/arduino/arduino-cli/arduino/discovery/discovery_client | ||
|
||
go 1.14 | ||
go 1.17 | ||
|
||
replace github.com/arduino/arduino-cli => ../../.. | ||
|
||
require ( | ||
github.com/arduino/arduino-cli v0.0.0-00010101000000-000000000000 | ||
github.com/gizak/termui/v3 v3.1.0 | ||
) | ||
|
||
require ( | ||
github.com/arduino/go-paths-helper v1.7.0 // indirect | ||
github.com/arduino/go-properties-orderedmap v1.6.0 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect | ||
github.com/leonelquinteros/gotext v1.4.0 // indirect | ||
github.com/mattn/go-runewidth v0.0.9 // indirect | ||
github.com/mitchellh/go-wordwrap v0.0.0-20150314170334-ad45545899c7 // indirect | ||
github.com/nsf/termbox-go v0.0.0-20190121233118-02980233997d // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/sirupsen/logrus v1.4.2 // indirect | ||
golang.org/x/net v0.0.0-20210505024714-0287a6fb4125 // indirect | ||
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf // indirect | ||
golang.org/x/text v0.3.6 // indirect | ||
google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c // indirect | ||
google.golang.org/grpc v1.38.0 // indirect | ||
google.golang.org/protobuf v1.26.0 // indirect | ||
) |
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,10 +1,19 @@ | ||
module github.com/arduino/arduino-cli/client_example | ||
|
||
go 1.14 | ||
go 1.17 | ||
|
||
replace github.com/arduino/arduino-cli => ../ | ||
|
||
require ( | ||
github.com/arduino/arduino-cli v0.0.0-20200109150215-ffa84fdaab21 | ||
google.golang.org/grpc v1.38.0 | ||
) | ||
|
||
require ( | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
golang.org/x/net v0.0.0-20210505024714-0287a6fb4125 // indirect | ||
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf // indirect | ||
golang.org/x/text v0.3.6 // indirect | ||
google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c // indirect | ||
google.golang.org/protobuf v1.26.0 // indirect | ||
) |
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,11 +1,84 @@ | ||
// Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/cobra/docsgen/go.mod | ||
module github.com/arduino/arduino-cli/docsgen | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
replace github.com/arduino/arduino-cli => ../ | ||
|
||
require ( | ||
github.com/arduino/arduino-cli v0.0.0 | ||
github.com/spf13/cobra v1.2.1 | ||
) | ||
|
||
require ( | ||
github.com/arduino/board-discovery v0.0.0-20180823133458-1ba29327fb0c // indirect | ||
github.com/arduino/go-paths-helper v1.7.0 // indirect | ||
github.com/arduino/go-properties-orderedmap v1.6.0 // indirect | ||
github.com/arduino/go-timeutils v0.0.0-20171220113728-d1dd9e313b1b // indirect | ||
github.com/arduino/go-win32-utils v0.0.0-20180330194947-ed041402e83b // indirect | ||
github.com/cmaglie/pb v1.0.27 // indirect | ||
github.com/codeclysm/cc v1.2.2 // indirect | ||
github.com/codeclysm/extract/v3 v3.0.2 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect | ||
github.com/creack/goselect v0.1.2 // indirect | ||
github.com/emirpasic/gods v1.12.0 // indirect | ||
github.com/fatih/color v1.7.0 // indirect | ||
github.com/fluxio/iohelpers v0.0.0-20160419043813-3a4dd67a94d2 // indirect | ||
github.com/fluxio/multierror v0.0.0-20160419044231-9c68d39025e5 // indirect | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/gofrs/uuid v3.2.0+incompatible // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/h2non/filetype v1.0.8 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect | ||
github.com/juju/errors v0.0.0-20181118221551-089d3ea4e4d5 // indirect | ||
github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd // indirect | ||
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect | ||
github.com/leonelquinteros/gotext v1.4.0 // indirect | ||
github.com/magiconair/properties v1.8.5 // indirect | ||
github.com/marcinbor85/gohex v0.0.0-20210308104911-55fb1c624d84 // indirect | ||
github.com/mattn/go-colorable v0.1.8 // indirect | ||
github.com/mattn/go-isatty v0.0.12 // indirect | ||
github.com/mattn/go-runewidth v0.0.9 // indirect | ||
github.com/miekg/dns v1.1.43 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/mitchellh/mapstructure v1.4.1 // indirect | ||
github.com/oleksandr/bonjour v0.0.0-20160508152359-5dcf00d8b228 // indirect | ||
github.com/pelletier/go-toml v1.9.3 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmylund/sortutil v0.0.0-20120526081524-abeda66eb583 // indirect | ||
github.com/rifflock/lfshook v0.0.0-20180920164130-b9218ef580f5 // indirect | ||
github.com/russross/blackfriday/v2 v2.0.1 // indirect | ||
github.com/schollz/closestmatch v2.1.0+incompatible // indirect | ||
github.com/segmentio/fasthash v0.0.0-20180216231524-a72b379d632e // indirect | ||
github.com/segmentio/stats/v4 v4.5.3 // indirect | ||
github.com/sergi/go-diff v1.1.0 // indirect | ||
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect | ||
github.com/sirupsen/logrus v1.4.2 // indirect | ||
github.com/spf13/afero v1.6.0 // indirect | ||
github.com/spf13/cast v1.3.1 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/spf13/viper v1.8.1 // indirect | ||
github.com/src-d/gcfg v1.4.0 // indirect | ||
github.com/subosito/gotenv v1.2.0 // indirect | ||
github.com/xanzy/ssh-agent v0.2.1 // indirect | ||
go.bug.st/cleanup v1.0.0 // indirect | ||
go.bug.st/downloader/v2 v2.1.1 // indirect | ||
go.bug.st/relaxed-semver v0.0.0-20190922224835-391e10178d18 // indirect | ||
go.bug.st/serial v1.3.2 // indirect | ||
go.bug.st/serial.v1 v0.0.0-20180827123349-5f7892a7bb45 // indirect | ||
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect | ||
golang.org/x/net v0.0.0-20210505024714-0287a6fb4125 // indirect | ||
golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf // indirect | ||
golang.org/x/text v0.3.6 // indirect | ||
google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c // indirect | ||
google.golang.org/grpc v1.38.0 // indirect | ||
google.golang.org/protobuf v1.26.0 // indirect | ||
gopkg.in/ini.v1 v1.62.0 // indirect | ||
gopkg.in/src-d/go-billy.v4 v4.3.2 // indirect | ||
gopkg.in/src-d/go-git.v4 v4.13.1 // indirect | ||
gopkg.in/warnings.v0 v0.1.2 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
) |
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