dl: add go1.17.6 and go1.16.13

Change-Id: I29a1e2bbe027326d275928e43160ef71156b6dcc
Reviewed-on: https://go-review.googlesource.com/c/dl/+/375878
Trust: Carlos Amedee <carlos@golang.org>
Run-TryBot: Carlos Amedee <carlos@golang.org>
Reviewed-by: Carlos Amedee <carlos@golang.org>
Trust: Dmitri Shuralyov <dmitshur@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Than McIntosh <thanm@google.com>
This commit is contained in:
Gopher Robot 2022-01-06 20:51:28 +00:00 коммит произвёл Carlos Amedee
Родитель 65ed43b8df
Коммит 1eec607216
2 изменённых файлов: 48 добавлений и 0 удалений

24
go1.16.13/main.go Normal file
Просмотреть файл

@ -0,0 +1,24 @@
// Copyright 2022 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.
// The go1.16.13 command runs the go command from Go 1.16.13.
//
// To install, run:
//
// $ go install golang.org/dl/go1.16.13@latest
// $ go1.16.13 download
//
// And then use the go1.16.13 command as if it were your normal go
// command.
//
// See the release notes at https://go.dev/doc/devel/release#go1.16.minor.
//
// File bugs at https://go.dev/issue/new.
package main
import "golang.org/dl/internal/version"
func main() {
version.Run("go1.16.13")
}

24
go1.17.6/main.go Normal file
Просмотреть файл

@ -0,0 +1,24 @@
// Copyright 2022 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.
// The go1.17.6 command runs the go command from Go 1.17.6.
//
// To install, run:
//
// $ go install golang.org/dl/go1.17.6@latest
// $ go1.17.6 download
//
// And then use the go1.17.6 command as if it were your normal go
// command.
//
// See the release notes at https://go.dev/doc/devel/release#go1.17.minor.
//
// File bugs at https://go.dev/issue/new.
package main
import "golang.org/dl/internal/version"
func main() {
version.Run("go1.17.6")
}