Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

Commit e1eb71c

Browse files
committed
v0.28.0
1 parent 0350fb0 commit e1eb71c

File tree

6 files changed

+25
-5
lines changed

6 files changed

+25
-5
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
### 0.28.0 - Jan 5 2021
2+
3+
Improvements:
4+
5+
- when a setBreakpoint requests is received, only respond once [#688](https://github.com/rubyide/vscode-ruby/issues/688)
6+
- Support Prettier for Ruby [#690](https://github.com/rubyide/vscode-ruby/issues/690)
7+
- Grammar improvements:
8+
- `:`, `@`, and `$` before `do` [#660](https://github.com/rubyide/vscode-ruby/issues/660)
9+
- method parameter detection and multiline parameters [#664](https://github.com/rubyide/vscode-ruby/issues/664)
10+
- fix hashkey with trailing `!` or `?` [#672](https://github.com/rubyide/vscode-ruby/issues/672)
11+
- yard syntax improvements [#673](https://github.com/rubyide/vscode-ruby/issues/673)
12+
- Add default debug configuration for minitest [#631](https://github.com/rubyide/vscode-ruby/issues/631)
13+
- Modern rubyfmt support [#628](https://github.com/rubyide/vscode-ruby/issues/628). Note that `rubyfmt` is no longer shipped with this extension!
14+
- Add log level support. Resolves [#526](https://github.com/rubyide/vscode-ruby/issues/526). Log level is set in the `ruby.languageServer.logLevel` configuration option.
15+
16+
Bug Fixes:
17+
18+
- wrap `documentPath.fsPath` in single quotes to support file paths with spaces [#647](https://github.com/rubyide/vscode-ruby/issues/647)]
19+
- Drops `known_function_names` matcher in grammar. Resolves [#591](https://github.com/rubyide/vscode-ruby/issues/591)
20+
121
### 0.27.0 - Feb 23 2020
222

323
Improvements:

packages/language-server-ruby/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "language-server-ruby",
3-
"version": "0.27.0",
3+
"version": "0.28.0",
44
"description": "Language server for Ruby",
55
"repository": "https://github.com/rubyide/vscode-ruby",
66
"author": "Stafford Brunk <[email protected]>",

packages/vscode-ruby-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ruby",
33
"displayName": "Ruby",
44
"publisher": "rebornix",
5-
"version": "0.27.0",
5+
"version": "0.28.0",
66
"description": "Ruby language support and debugging for Visual Studio Code",
77
"main": "dist/client/ruby.js",
88
"license": "MIT",

packages/vscode-ruby-common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vscode-ruby-common",
3-
"version": "0.27.0",
3+
"version": "0.28.0",
44
"description": "Common utilities for VSCode Ruby",
55
"main": "src/index.ts",
66
"repository": "https://github.com/rubyide/vscode-ruby",

packages/vscode-ruby-debugger/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vscode-ruby-debugger",
3-
"version": "0.27.0",
3+
"version": "0.28.0",
44
"description": "Debugger implementation for vscode-ruby",
55
"main": "src/index.ts",
66
"repository": "https://github.com/rubyide/vscode-ruby",

packages/vscode-ruby/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-ruby",
33
"displayName": "VSCode Ruby",
44
"publisher": "wingrunr21",
5-
"version": "0.27.0",
5+
"version": "0.28.0",
66
"description": "Syntax highlighing, snippet, and language configuration support for Ruby",
77
"repository": "https://github.com/rubyide/vscode-ruby",
88
"author": "Stafford Brunk <[email protected]>",

0 commit comments

Comments
 (0)