From b0a53d22026a22864e1ca411cc0d9a2630eb5f75 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Mon, 3 Dec 2018 14:58:38 -0800 Subject: [PATCH] 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 --- doc/go1.12.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/doc/go1.12.html b/doc/go1.12.html index 9a5d4bc621c..c398a113168 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