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

Commit 9f12c66

Browse files
committed
v0.28.1
1 parent ba4377c commit 9f12c66

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1+
### 0.28.1 - Jan 7 2021
2+
3+
Bug Fixes:
4+
5+
- Downgrade `tree-sitter` and `tree-sitter-ruby` as it was erroring when parsing `<<` syntax [#693](https://github.com/rubyide/vscode-ruby/issues/693)
6+
17
### 0.28.0 - Jan 5 2021
28

39
Improvements:
410

5-
- when a setBreakpoint requests is received, only respond once [#688](https://github.com/rubyide/vscode-ruby/issues/688)
11+
- when a setBreakpoint request is received, only respond once [#688](https://github.com/rubyide/vscode-ruby/issues/688)
612
- Support Prettier for Ruby [#690](https://github.com/rubyide/vscode-ruby/issues/690)
713
- Grammar improvements:
814
- `:`, `@`, and `$` before `do` [#660](https://github.com/rubyide/vscode-ruby/issues/660)
@@ -15,7 +21,7 @@ Improvements:
1521

1622
Bug Fixes:
1723

18-
- wrap `documentPath.fsPath` in single quotes to support file paths with spaces [#647](https://github.com/rubyide/vscode-ruby/issues/647)]
24+
- wrap `documentPath.fsPath` in single quotes to support file paths with spaces [#647](https://github.com/rubyide/vscode-ruby/issues/647)
1925
- Drops `known_function_names` matcher in grammar. Resolves [#591](https://github.com/rubyide/vscode-ruby/issues/591)
2026

2127
### 0.27.0 - Feb 23 2020

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.28.0",
3+
"version": "0.28.1",
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ruby",
33
"displayName": "Ruby",
44
"publisher": "rebornix",
5-
"version": "0.28.0",
5+
"version": "0.28.1",
66
"description": "Ruby language support and debugging for Visual Studio Code",
77
"main": "dist/client/ruby.js",
88
"license": "MIT",
@@ -36,7 +36,7 @@
3636
"async": "^2.6.1",
3737
"default-shell": "^1.0.1",
3838
"execa": "^2.0.3",
39-
"language-server-ruby": "^0.28.0",
39+
"language-server-ruby": "^0.28.1",
4040
"lodash": "^4.17.15",
4141
"minimatch": "^3.0.4",
4242
"ruby-method-locate": "^0.0.6",

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.28.0",
3+
"version": "0.28.1",
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.28.0",
3+
"version": "0.28.1",
44
"description": "Debugger implementation for vscode-ruby",
55
"main": "src/index.ts",
66
"repository": "https://github.com/rubyide/vscode-ruby",

0 commit comments

Comments
 (0)