Skip to content

Commit 1eec607

Browse files
gopherbotcagedmantis
authored andcommitted
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 <[email protected]> Run-TryBot: Carlos Amedee <[email protected]> Reviewed-by: Carlos Amedee <[email protected]> Trust: Dmitri Shuralyov <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Than McIntosh <[email protected]>
1 parent 65ed43b commit 1eec607

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

go1.16.13/main.go

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// Copyright 2022 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+
// The go1.16.13 command runs the go command from Go 1.16.13.
6+
//
7+
// To install, run:
8+
//
9+
// $ go install golang.org/dl/go1.16.13@latest
10+
// $ go1.16.13 download
11+
//
12+
// And then use the go1.16.13 command as if it were your normal go
13+
// command.
14+
//
15+
// See the release notes at https://go.dev/doc/devel/release#go1.16.minor.
16+
//
17+
// File bugs at https://go.dev/issue/new.
18+
package main
19+
20+
import "golang.org/dl/internal/version"
21+
22+
func main() {
23+
version.Run("go1.16.13")
24+
}

go1.17.6/main.go

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// Copyright 2022 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+
// The go1.17.6 command runs the go command from Go 1.17.6.
6+
//
7+
// To install, run:
8+
//
9+
// $ go install golang.org/dl/go1.17.6@latest
10+
// $ go1.17.6 download
11+
//
12+
// And then use the go1.17.6 command as if it were your normal go
13+
// command.
14+
//
15+
// See the release notes at https://go.dev/doc/devel/release#go1.17.minor.
16+
//
17+
// File bugs at https://go.dev/issue/new.
18+
package main
19+
20+
import "golang.org/dl/internal/version"
21+
22+
func main() {
23+
version.Run("go1.17.6")
24+
}

0 commit comments

Comments
 (0)