diff options
| author | Christine Dodrill <me@christine.website> | 2017-10-25 17:26:58 -0700 |
|---|---|---|
| committer | Christine Dodrill <me@christine.website> | 2017-10-25 17:27:18 -0700 |
| commit | 5cd9bb891ae236e0c5e99364b365c9cd8bf1ba57 (patch) | |
| tree | f07e794418e740989fb80268f2b1c5c60fbc01e0 /version | |
| parent | 6a3c43a525625f4662565045c80a00341bf6ef48 (diff) | |
| download | x-5cd9bb891ae236e0c5e99364b365c9cd8bf1ba57.tar.xz x-5cd9bb891ae236e0c5e99364b365c9cd8bf1ba57.zip | |
version: go1.8.5, go 1.9.2
Diffstat (limited to 'version')
| -rw-r--r-- | version/go1.8.5/main.go | 24 | ||||
| -rw-r--r-- | version/go1.9.2/main.go | 24 |
2 files changed, 48 insertions, 0 deletions
diff --git a/version/go1.8.5/main.go b/version/go1.8.5/main.go new file mode 100644 index 0000000..cbfcc31 --- /dev/null +++ b/version/go1.8.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.8.5 command runs the go command from go1.8.5. +// +// To install, run: +// +// $ go get golang.org/x/build/version/go1.8.5 +// $ go1.8.5 download +// +// And then use the go1.8.5 command as if it were your normal go +// command. +// +// See the release notes at https://beta.golang.org/doc/go1.8 +// +// File bugs at http://golang.org/issues/new +package main + +import "golang.org/x/build/version" + +func main() { + version.Run("go1.8.5") +} diff --git a/version/go1.9.2/main.go b/version/go1.9.2/main.go new file mode 100644 index 0000000..bbe3302 --- /dev/null +++ b/version/go1.9.2/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.9.2 command runs the go command from go1.9.2. +// +// To install, run: +// +// $ go get golang.org/x/build/version/go1.9.2 +// $ go1.9.2 download +// +// And then use the go1.9.2 command as if it were your normal go +// command. +// +// See the release notes at https://beta.golang.org/doc/go1.9 +// +// File bugs at http://golang.org/issues/new +package main + +import "golang.org/x/build/version" + +func main() { + version.Run("go1.9.2") +} |
