internal/goversion: update to 1.14

In #33848, we propose to use 'go 1.14' in the go.mod file to enable
new default behavior. That means that 'go mod init' needs to start
generating that directive by default, which requires the presence of
the updated version tag in the build environment.

Updates #33848

Change-Id: I9f3b8845fdfd843fd76de32f4b55d8f765d691de
Reviewed-on: https://go-review.googlesource.com/c/go/+/198318
Run-TryBot: Bryan C. Mills <bcmills@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Jay Conrod <jayconrod@google.com>
This commit is contained in:
Bryan C. Mills 2019-10-01 12:52:16 -04:00
parent 93a79bbcc0
commit a1b0af9904
2 changed files with 2 additions and 1 deletions

View File

@ -111,6 +111,7 @@
// - "go1.11", from Go version 1.11 onward
// - "go1.12", from Go version 1.12 onward
// - "go1.13", from Go version 1.13 onward
// - "go1.14", from Go version 1.14 onward
// - any additional words listed in ctxt.BuildTags
//
// There are no build tags for beta or minor releases.

View File

@ -10,4 +10,4 @@ package goversion
//
// When incrementing this, also add to the list at src/go/build/doc.go
// (search for "onward").
const Version = 13
const Version = 14