Source file src/internal/goversion/goversion.go

     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  
     5  package goversion
     6  
     7  // Version is the Go 1.x version which is currently
     8  // in development and will eventually get released.
     9  //
    10  // It should be updated at the start of each development cycle to be
    11  // the version of the next Go 1.x release. See golang.org/issue/40705.
    12  const Version = 22
    13  

View as plain text