From: Ian Lance Taylor Date: Mon, 3 Dec 2018 22:58:38 +0000 (-0800) Subject: doc: release notes: "go tool vet" is no longer supported X-Git-Tag: go1.12beta1~181 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b0a53d22026a22864e1ca411cc0d9a2630eb5f75;p=gostls13.git doc: release notes: "go tool vet" is no longer supported Updates #28869 Change-Id: Ie152bf959af2e9cd32b1ccc031e8208e64fbe3ce Reviewed-on: https://go-review.googlesource.com/c/152161 Reviewed-by: Brad Fitzpatrick Reviewed-by: Alan Donovan --- diff --git a/doc/go1.12.html b/doc/go1.12.html index 9a5d4bc621..c398a11316 100644 --- a/doc/go1.12.html +++ b/doc/go1.12.html @@ -56,6 +56,19 @@ Go 1.13 will require macOS 10.11 El Capitan or later.

Tools

+

go tool vet no longer supported

+ +

+ The go vet command has been rewritten to serve as the + base for a range of different source code analysis tools. See + the golang.org/x/tools/go/analysis + package for details. A side-effect is that go tool vet + is no longer supported. External tools that use go tool + vet must be changed to use go + vet. Using go vet instead of go tool + vet should work with all supported versions of Go. +

+

Build cache requirement