Skip to content

Commit

Permalink
internal/goversion: update to 1.14
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Bryan C. Mills committed Oct 1, 2019
1 parent 93a79bb commit a1b0af9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/go/build/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/internal/goversion/goversion.go
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit a1b0af9

Please sign in to comment.