diff options
| author | Christine Dodrill <me@christine.website> | 2017-05-24 15:26:50 -0700 |
|---|---|---|
| committer | Christine Dodrill <me@christine.website> | 2017-05-24 15:26:50 -0700 |
| commit | 495864f18470b056a644da37f68f9cc447e74d1b (patch) | |
| tree | a52b2a37090607d8be5227e3b0236b9acfb4ab55 | |
| parent | 8116a07a406c483fe6b367d6e0769c7891d24f66 (diff) | |
| download | x-495864f18470b056a644da37f68f9cc447e74d1b.tar.xz x-495864f18470b056a644da37f68f9cc447e74d1b.zip | |
1.8.2,1.8.3
| -rw-r--r-- | version/go1.8.2/main.go | 24 | ||||
| -rw-r--r-- | version/go1.8.3/main.go | 24 |
2 files changed, 48 insertions, 0 deletions
diff --git a/version/go1.8.2/main.go b/version/go1.8.2/main.go new file mode 100644 index 0000000..d17391b --- /dev/null +++ b/version/go1.8.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.8.2 command runs the go command from go1.8.2. +// +// To install, run: +// +// $ go get golang.org/x/build/version/go1.8.2 +// $ go1.8.2 download +// +// And then use the go1.8.2 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.2") +} diff --git a/version/go1.8.3/main.go b/version/go1.8.3/main.go new file mode 100644 index 0000000..c1b21db --- /dev/null +++ b/version/go1.8.3/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.3 command runs the go command from go1.8.3. +// +// To install, run: +// +// $ go get golang.org/x/build/version/go1.8.3 +// $ go1.8.3 download +// +// And then use the go1.8.3 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.3") +} |
