aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/googleapis/gax-go/CONTRIBUTING.md
Commit message (Collapse)AuthorAgeFilesLines
* go.mod: switch to modules for dependency managementDmitry Vyukov2020-07-041-32/+0
| | | | | | | | | | | | | Godep is long deprecated and modules is the future. Updating dependencies with godep is painful and non-transparent. This will hopefully help to create custom golangci-lint linters. The change was created with: go mod init rm -rf vendor go mod vendor Fixes #1247
* vendor: update vendored filesDmitry Vyukov2020-01-291-0/+5
| | | | | | Required to switch dashboard/app to go1.11. Update #1461
* vendor: vendor dependenciesDmitry Vyukov2017-06-131-0/+27
All dependencies are vendored with: go get github.com/golang/dep dep init If necessary, can be updated with: dep ensure -update Fixes #215