From 91bcfb1bdf9c5e581db312e46eb575225c08f359 Mon Sep 17 00:00:00 2001 From: Robert Findley Date: Thu, 7 Apr 2022 11:58:27 -0400 Subject: [PATCH] internal/lsp/debug: update hard-coded version for v0.8.3 For golang/go#52213 Change-Id: I6fe0608d896bd84a4fd510f009ed961d457472a5 Reviewed-on: https://go-review.googlesource.com/c/tools/+/398815 Trust: Robert Findley Run-TryBot: Robert Findley gopls-CI: kokoro Reviewed-by: Suzy Mueller Trust: Suzy Mueller --- internal/lsp/debug/info.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/lsp/debug/info.go b/internal/lsp/debug/info.go index 467ff3de94d..8a977224e88 100644 --- a/internal/lsp/debug/info.go +++ b/internal/lsp/debug/info.go @@ -29,7 +29,7 @@ const ( ) // Version is a manually-updated mechanism for tracking versions. -const Version = "v0.8.2" +const Version = "v0.8.3" // ServerVersion is the format used by gopls to report its version to the // client. This format is structured so that the client can parse it easily.