1// Copyright 2019 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package goversion
6
7// Version is the current Go 1.x version. During development cycles on
8// the master branch it changes to be the version of the next Go 1.x
9// release.
10//
11// When incrementing this, also add to the list at src/go/build/doc.go
12// (search for "onward").
13const Version = 14
14