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

Commit 0485919

Browse files
committed
v0.27.0
1 parent c10dcfa commit 0485919

File tree

7 files changed

+25
-7
lines changed

7 files changed

+25
-7
lines changed

Diff for: CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
### 0.27.0 - Feb 23 2020
2+
3+
Improvements:
4+
5+
- Provide evaluateName property, so variable values can be copied from debugger. [#546](https://github.com/rubyide/vscode-ruby/pull/546)
6+
- Add reference to debug configuration doc. [#564](https://github.com/rubyide/vscode-ruby/pull/564)
7+
- Add stdin-filename arg to Reek linter. [#575](https://github.com/rubyide/vscode-ruby/pull/575)
8+
- Add Unix domain socket support to the debugger. [#586](https://github.com/rubyide/vscode-ruby/pull/586)
9+
- Whitelist `BUNDLE_PATH` env variable. [#588](https://github.com/rubyide/vscode-ruby/pull/588)
10+
- Whitelist additional variables for asdf and rbenv. Resolves [#572](https://github.com/rubyide/vscode-ruby/issues/572)
11+
12+
Bug Fixes:
13+
14+
- Handle undefined workspace root folders. Resolves [#533](https://github.com/rubyide/vscode-ruby/issues/533)
15+
- Identify 1 or more ! as keyword.operator.logical.ruby. Resolves [#573](https://github.com/rubyide/vscode-ruby/issues/573)
16+
- Add additional meta.function-call.ruby scope matching. Resolves [#579](https://github.com/rubyide/vscode-ruby/issues/579)
17+
- Match variable.other.ruby through the end of the line. Resolves [#579](https://github.com/rubyide/vscode-ruby/issues/579)
18+
119
### 0.26.0 - Nov 19 2019
220

321
General Changes:

Diff for: lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
],
55
"npmClient": "yarn",
66
"useWorkspaces": true,
7-
"version": "0.26.0"
7+
"version": "0.27.0"
88
}

Diff for: packages/language-server-ruby/package.json

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

Diff for: packages/vscode-ruby-client/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ruby",
33
"displayName": "Ruby",
44
"publisher": "rebornix",
5-
"version": "0.26.0",
5+
"version": "0.27.0",
66
"description": "Ruby language support and debugging for Visual Studio Code",
77
"main": "dist/client/ruby.js",
88
"license": "MIT",
@@ -34,7 +34,7 @@
3434
"async": "^2.6.1",
3535
"default-shell": "^1.0.1",
3636
"execa": "^2.0.3",
37-
"language-server-ruby": "^0.26.0",
37+
"language-server-ruby": "^0.27.0",
3838
"lodash": "^4.17.15",
3939
"minimatch": "^3.0.4",
4040
"ruby-method-locate": "^0.0.6",

Diff for: packages/vscode-ruby-common/package.json

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

Diff for: packages/vscode-ruby-debugger/package.json

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

Diff for: packages/vscode-ruby/package.json

+1-1
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.26.0",
5+
"version": "0.27.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)