2019-04-19 16:09:17 +00:00
|
|
|
// Copyright 2019 The Go Authors. All rights reserved.
|
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
|
|
package goversion
|
|
|
|
|
|
2020-08-11 18:37:44 -04:00
|
|
|
// Version is the Go 1.x version which is currently
|
|
|
|
|
// in development and will eventually get released.
|
2019-04-19 16:09:17 +00:00
|
|
|
//
|
2020-08-11 18:37:44 -04:00
|
|
|
// It should be updated at the start of each development cycle to be
|
|
|
|
|
// the version of the next Go 1.x release. See golang.org/issue/40705.
|
2020-12-03 13:39:30 -05:00
|
|
|
const Version = 17
|