diff options
author | 2018-02-21 23:25:40 -0800 | |
---|---|---|
committer | 2018-02-22 07:25:40 +0000 | |
commit | 9194b4c29dd37e76d71292bfdef198dae78047b5 (patch) | |
tree | 423e5af7e880f60943153565444d99ab07239703 /Makefile | |
parent | 074d176f039940d408bde2831c442500433f3ac4 (diff) | |
download | coredns-9194b4c29dd37e76d71292bfdef198dae78047b5.tar.gz coredns-9194b4c29dd37e76d71292bfdef198dae78047b5.tar.zst coredns-9194b4c29dd37e76d71292bfdef198dae78047b5.zip |
Update golang.org/x/net and golang.org/x/text (#1553)
This fix updates golang.org/x/net to release-branch.go1.10
and golang.org/x/text to v0.3.0, for the purpose of
align with go version 1.10.
This fix also updates README.md to promote using go 1.10.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -38,8 +38,8 @@ godeps: (cd $(GOPATH)/src/github.com/mholt/caddy && git checkout -q v0.10.11) (cd $(GOPATH)/src/github.com/miekg/dns && git checkout -q v1.0.4) (cd $(GOPATH)/src/github.com/prometheus/client_golang && git checkout -q v0.8.0) - (cd $(GOPATH)/src/golang.org/x/net && git checkout -q release-branch.go1.9) - (cd $(GOPATH)/src/golang.org/x/text && git checkout -q e19ae1496984b1c655b8044a65c0300a3c878dd3) + (cd $(GOPATH)/src/golang.org/x/net && git checkout -q release-branch.go1.10) + (cd $(GOPATH)/src/golang.org/x/text && git checkout -q v0.3.0) .PHONY: travis travis: check |