cmd/gopls: preparing for v0.1.0

Change-Id: I6b749858cbba0ec300caa77426ba0ae69a97677d
Reviewed-on: https://go-review.googlesource.com/c/tools/+/181997
Run-TryBot: Ian Cottrell <iancottrell@google.com>
Reviewed-by: Rebecca Stambler <rstambler@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
Ian Cottrell 2019-06-12 17:58:43 -04:00
parent 59534d075a
commit 10539ce303
2 changed files with 3 additions and 1 deletions

View File

@ -13,9 +13,11 @@ import (
"os"
"golang.org/x/tools/internal/lsp/cmd"
"golang.org/x/tools/internal/lsp/debug"
"golang.org/x/tools/internal/tool"
)
func main() {
debug.Version += "-cmd.gopls"
tool.Main(context.Background(), cmd.New("", nil), os.Args[1:])
}

View File

@ -20,7 +20,7 @@ const (
)
// Version is a manually-updated mechanism for tracking versions.
const Version = "v0.0.1-20190607+alpha"
var Version = "v0.1.0"
// This writes the version and environment information to a writer.
func PrintVersionInfo(w io.Writer, verbose bool, mode PrintMode) {