Skip to content

Commit d37cc81

Browse files
committed
[release] CHANGELOG.md: change log for v0.18.1
And adjusted the new go.extractServerChannel command's title. For #861 Change-Id: I50becbc66126f7f3fd5d92f2473427a3d8348d58 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/266581 Trust: Hyang-Ah Hana Kim <[email protected]> Trust: Peter Weinberger <[email protected]> Run-TryBot: Hyang-Ah Hana Kim <[email protected]> Reviewed-by: Peter Weinberger <[email protected]> Reviewed-by: Suzy Mueller <[email protected]> TryBot-Result: kokoro <[email protected]> (cherry picked from commit 084dae7) Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/266582
1 parent 2ba9297 commit d37cc81

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
1+
## v0.18.1 - 30th Oct, 2020
2+
3+
A list of all issues and changes can be found in the [v0.18.1 milestone](https://github.com/golang/vscode-go/milestone/15?closed=1).
4+
5+
### Enhancement
6+
- New `Go: extract language server logs to editor` command was added ([CL 263526](https://go-review.googlesource.com/c/vscode-go/+/263526)).
7+
8+
### Fixes
9+
- Fixed a bug that hid the Go status bar when there is no active text editor ([Issue 831](https://github.com/golang/vscode-go/issues/831)).
10+
11+
### Thanks
12+
Thank you for your contributions, @suzmue, @pjweinbgo!
13+
114
## v0.18.0 - 23rd Oct, 2020
215

3-
Unified Go status UI ⚡, many debugger feature improvements, and LSP 3.16 features! A list of all issues fixed with this release can be found in the [v0.18.0 milestone](https://github.com/golang/vscode-go/milestone/11).
16+
Unified Go status UI ⚡, many debugger feature improvements, and LSP 3.16 features! A list of all issues fixed with this release can be found in the [v0.18.0 milestone](https://github.com/golang/vscode-go/milestone/11?closed=1).
417

518
### New Features
619
- The new Go status bar provides a menu to manage the go version, open the gopls trace, open the `go.mod` file, and more. The old `Go Modules` status bar was removed in favor of this new unified status bar. See [VS Code Go UI documentation](https://github.com/golang/vscode-go/blob/master/docs/ui.md) to learn more about this.

docs/commands.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ Generates unit tests for the selected function in the current file
9191

9292
Generates method stub for implementing the provided interface and inserts at the cursor.
9393

94-
### `Go: extract server output channel to editor`
94+
### `Go: Extract Language Server Logs To Editor`
9595

96-
Show the gopls (server) output channel in the editor.
96+
Extract logs in the `gopls (server)` output channel to the editor.
9797

9898
### `Go: Toggle gc details`
9999

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,8 +244,8 @@
244244
},
245245
{
246246
"command": "go.extractServerChannel",
247-
"title": "Go: extract server output channel to editor",
248-
"description": "Show the gopls (server) output channel in the editor."
247+
"title": "Go: Extract Language Server Logs To Editor",
248+
"description": "Extract logs in the `gopls (server)` output channel to the editor."
249249
},
250250
{
251251
"command": "go.toggle.gc_details",

0 commit comments

Comments
 (0)