diff options
| author | Christine Dodrill <me@christine.website> | 2017-02-17 11:59:15 -0800 |
|---|---|---|
| committer | Christine Dodrill <me@christine.website> | 2017-02-17 11:59:15 -0800 |
| commit | 05209526e73481e65feafeb8a60a4547b0900b50 (patch) | |
| tree | c6211b4c392efbddae32cbd4bdfb9a2c4e3e3182 | |
| parent | b4d81d8d07e164d237263e1764cf279afe4f243b (diff) | |
| download | x-05209526e73481e65feafeb8a60a4547b0900b50.tar.xz x-05209526e73481e65feafeb8a60a4547b0900b50.zip | |
go 1.7.5, go 1.8
| -rw-r--r-- | gover/go1.7.5/main.go | 24 | ||||
| -rw-r--r-- | gover/go1.8/main.go | 24 |
2 files changed, 48 insertions, 0 deletions
diff --git a/gover/go1.7.5/main.go b/gover/go1.7.5/main.go new file mode 100644 index 0000000..81a57d6 --- /dev/null +++ b/gover/go1.7.5/main.go @@ -0,0 +1,24 @@ +// Copyright 2016 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.7.5 command runs the go command from go1.7.5. +// +// To install, run: +// +// $ go get golang.org/x/build/version/go1.7.5 +// $ go1.7.5 download +// +// And then use the go1.7.5 command as if it were your normal go +// command. +// +// See the release notes at https://beta.golang.org/doc/go1.7 +// +// File bugs at http://golang.org/issues/new +package main + +import "golang.org/x/build/version" + +func main() { + version.Run("go1.7.5") +} diff --git a/gover/go1.8/main.go b/gover/go1.8/main.go new file mode 100644 index 0000000..5f36445 --- /dev/null +++ b/gover/go1.8/main.go @@ -0,0 +1,24 @@ +// Copyright 2016 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.8 command runs the go command from go1.8. +// +// To install, run: +// +// $ go get golang.org/x/build/version/go1.8 +// $ go1.8 download +// +// And then use the go1.8 command as if it were your normal go +// command. +// +// See the release notes at https://beta.golang.org/doc/go1.7 +// +// File bugs at http://golang.org/issues/new +package main + +import "golang.org/x/build/version" + +func main() { + version.Run("go1.8") +} |
