Skip to content

Commit a1b0af9

Browse files
author
Bryan C. Mills
committed
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 <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Jay Conrod <[email protected]>
1 parent 93a79bb commit a1b0af9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/go/build/doc.go

+1
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@
111111
// - "go1.11", from Go version 1.11 onward
112112
// - "go1.12", from Go version 1.12 onward
113113
// - "go1.13", from Go version 1.13 onward
114+
// - "go1.14", from Go version 1.14 onward
114115
// - any additional words listed in ctxt.BuildTags
115116
//
116117
// There are no build tags for beta or minor releases.

src/internal/goversion/goversion.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ package goversion
1010
//
1111
// When incrementing this, also add to the list at src/go/build/doc.go
1212
// (search for "onward").
13-
const Version = 13
13+
const Version = 14

0 commit comments

Comments
 (0)