Skip to content

Commit

Permalink
dl: add go1.14.4 and go1.13.12
Browse files Browse the repository at this point in the history
For golang/go#39347.
For golang/go#39346.

Change-Id: I41db9cef8988eaa39b57efd768e8464049434488
Reviewed-on: https://go-review.googlesource.com/c/dl/+/235923
Run-TryBot: Dmitri Shuralyov <[email protected]>
TryBot-Result: Gobot Gobot <[email protected]>
Reviewed-by: Carlos Amedee <[email protected]>
  • Loading branch information
dmitshur committed Jun 1, 2020
1 parent 2d68e82 commit a954fa2
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
24 changes: 24 additions & 0 deletions go1.13.12/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// Copyright 2020 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.13.12 command runs the go command from Go 1.13.12.
//
// To install, run:
//
// $ go get golang.org/dl/go1.13.12
// $ go1.13.12 download
//
// And then use the go1.13.12 command as if it were your normal go
// command.
//
// See the release notes at https://golang.org/doc/devel/release.html#go1.13.minor
//
// File bugs at https://golang.org/issues/new
package main

import "golang.org/dl/internal/version"

func main() {
version.Run("go1.13.12")
}
24 changes: 24 additions & 0 deletions go1.14.4/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// Copyright 2020 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.14.4 command runs the go command from Go 1.14.4.
//
// To install, run:
//
// $ go get golang.org/dl/go1.14.4
// $ go1.14.4 download
//
// And then use the go1.14.4 command as if it were your normal go
// command.
//
// See the release notes at https://golang.org/doc/devel/release.html#go1.14.minor
//
// File bugs at https://golang.org/issues/new
package main

import "golang.org/dl/internal/version"

func main() {
version.Run("go1.14.4")
}

0 comments on commit a954fa2

Please sign in to comment.