From: Bryan C. Mills Date: Wed, 26 Jun 2019 17:16:50 +0000 (-0400) Subject: doc/go1.13: describe the change in behavior of GO111MODULE=auto X-Git-Tag: go1.13rc1~158 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b21c837008a398fe23f06741946cf39e52dfdfa7;p=gostls13.git doc/go1.13: describe the change in behavior of GO111MODULE=auto Updates #31857 Change-Id: Id0dc66246f768a2c730c67cd7a4a7830547f22a8 Reviewed-on: https://go-review.googlesource.com/c/go/+/183922 Run-TryBot: Bryan C. Mills Reviewed-by: Jay Conrod Reviewed-by: Katie Hockman --- diff --git a/doc/go1.13.html b/doc/go1.13.html index f9a6c5b710..180fcc9499 100644 --- a/doc/go1.13.html +++ b/doc/go1.13.html @@ -169,6 +169,17 @@ Do not send CLs removing the interior tags from such phrases.

Environment variables

+

+ The GO111MODULE + environment variable continues to default to auto, but + the auto setting now activates the module-aware mode of + the go command whenever the current working directory contains, + or is below a directory containing, a go.mod file — even if the + current directory is within GOPATH/src. This change simplifies + the migration of existing code within GOPATH/src and the ongoing + maintenance of module-aware packages alongside non-module-aware importers. +

+

The new GOPRIVATE