Skip to content

Commit 1c9df16

Browse files
committed
Prepare release 2.6.1
1 parent 228eebc commit 1c9df16

File tree

2 files changed

+22
-7
lines changed

2 files changed

+22
-7
lines changed

Changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog for vscode-haskell
22

3+
## 2.6.1
4+
5+
- Prefer the `set` version for `cabal` and `stack` if there is any
6+
([#1275](https://github.com/haskell/vscode-haskell/pull/1275)) by @fendor
7+
- Make js debugger work
8+
([#1258](https://github.com/haskell/vscode-haskell/pull/1258)) by @dyniec
9+
- Prepare release 2.6.0
10+
([#1103](https://github.com/haskell/vscode-haskell/pull/1103)) by @fendor
11+
312
## 2.6.0
413

514
- Add option to enable/disable `.cabal` file support

package.json

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "haskell",
33
"displayName": "Haskell",
44
"description": "Haskell language support powered by the Haskell Language Server",
5-
"version": "2.6.0",
5+
"version": "2.6.1",
66
"license": "MIT",
77
"publisher": "haskell",
88
"engines": {
@@ -334,6 +334,18 @@
334334
"scope": "resource",
335335
"type": "boolean"
336336
},
337+
"haskell.plugin.eval.codeActionsOn": {
338+
"default": true,
339+
"description": "Enables eval code actions",
340+
"scope": "resource",
341+
"type": "boolean"
342+
},
343+
"haskell.plugin.eval.codeLensOn": {
344+
"default": true,
345+
"description": "Enables eval code lenses",
346+
"scope": "resource",
347+
"type": "boolean"
348+
},
337349
"haskell.plugin.eval.config.diff": {
338350
"default": true,
339351
"markdownDescription": "Enable the diff output (WAS/NOW) of eval lenses",
@@ -346,12 +358,6 @@
346358
"scope": "resource",
347359
"type": "boolean"
348360
},
349-
"haskell.plugin.eval.globalOn": {
350-
"default": true,
351-
"description": "Enables eval plugin",
352-
"scope": "resource",
353-
"type": "boolean"
354-
},
355361
"haskell.plugin.explicit-fields.codeActionsOn": {
356362
"default": true,
357363
"description": "Enables explicit-fields code actions",

0 commit comments

Comments
 (0)