-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Support go1.13 #670
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support go1.13 #670
Conversation
cd86adb
to
0556f6a
Compare
2bbe9ff
to
f443182
Compare
16b2e6d
to
4f89a38
Compare
Setup Travis CI to run on go 1.12 and 1.13. Update info about go versions in README. Rebuild go.mod,go.sum on go1.13.
4f89a38
to
dc152d3
Compare
FWIW: w/o the go.mod changes here I can't |
Additional note - Even with golangci-lint @ 1.17.1 $ go get github.com/golangci/golangci-lint/cmd/golangci-lint
go: github.com/golangci/golangci-lint@v1.17.1 requires
github.com/go-critic/go-critic@v0.0.0-20181204210945-1df300866540: invalid pseudo-version: does not match version-control timestamp (2019-05-26T07:48:19Z) |
Yes, this PR predates 1.17.1. You'd need to get |
@zikaeroh Well master.... go get github.com/golangci/golangci-lint/cmd/golangci-lint@master
go: finding github.com/golangci/golangci-lint/cmd master
go: finding github.com/golangci/golangci-lint/cmd/golangci-lint master
go: finding github.com/golangci master
go: finding github.com/golangci/golangci-lint master
go: finding github.com master
go: downloading github.com/golangci/golangci-lint v1.17.2-0.20190909185456-6163a8a79084
go: extracting github.com/golangci/golangci-lint v1.17.2-0.20190909185456-6163a8a79084
# github.com/golangci/golangci-lint/pkg/lint
../../go/pkg/mod/github.com/golangci/golangci-lint@v1.17.2-0.20190909185456-6163a8a79084/pkg/lint/load.go:278:3: unknown field 'Logf' in struct literal of type "golang.org/x/tools/go/packages".Config |
PS: That is because the replacements need to be pulled forward into our project. |
Looking forward to a new release from this :) |
I can't get rid of replacements until my pull requests to upstreams are merged. But I've changed replaced x/tools to be compatible with the replacement. |
Setup Travis CI to run on go 1.12 and 1.13.
Update info about go versions in README.
Rebuild go.mod,go.sum on go1.13.
Thank you for the pull request!