Skip to content

Commit bd20877

Browse files
committed
Prepare release 2.6.0
1 parent b085b01 commit bd20877

File tree

2 files changed

+48
-3
lines changed

2 files changed

+48
-3
lines changed

Changelog.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog for vscode-haskell
22

3+
## 2.6.0
4+
5+
- Add option to enable/disable `.cabal` file support
6+
([#1223](https://github.com/haskell/vscode-haskell/pull/1223)) by @fendor
7+
- Upgrade project to use latest eslint version
8+
([#1150](https://github.com/haskell/vscode-haskell/pull/1150)) by @fendor
9+
- Fix windows CI
10+
([#1149](https://github.com/haskell/vscode-haskell/pull/1149)) by @fendor
11+
- Manually install ghcup into image
12+
([#1119](https://github.com/haskell/vscode-haskell/pull/1119)) by @fendor
13+
- bump vscode-languageclient version to 9.0.1
14+
([#1108](https://github.com/haskell/vscode-haskell/pull/1108)) by @jetjinser
15+
- Add cabalFormattingProvider to package.json
16+
([#1100](https://github.com/haskell/vscode-haskell/pull/1100)) by @fendor
17+
318
## 2.5.3
419

520
- Split out packaging action

package.json

+33-3
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.5.3",
5+
"version": "2.6.0",
66
"license": "MIT",
77
"publisher": "haskell",
88
"engines": {
@@ -292,6 +292,24 @@
292292
"scope": "resource",
293293
"type": "boolean"
294294
},
295+
"haskell.plugin.cabal.hoverOn": {
296+
"default": true,
297+
"description": "Enables cabal hover",
298+
"scope": "resource",
299+
"type": "boolean"
300+
},
301+
"haskell.plugin.cabal.symbolsOn": {
302+
"default": true,
303+
"description": "Enables cabal symbols",
304+
"scope": "resource",
305+
"type": "boolean"
306+
},
307+
"haskell.plugin.cabalHaskellIntegration.globalOn": {
308+
"default": true,
309+
"description": "Enables cabalHaskellIntegration plugin",
310+
"scope": "resource",
311+
"type": "boolean"
312+
},
295313
"haskell.plugin.callHierarchy.globalOn": {
296314
"default": true,
297315
"description": "Enables callHierarchy plugin",
@@ -334,9 +352,15 @@
334352
"scope": "resource",
335353
"type": "boolean"
336354
},
337-
"haskell.plugin.explicit-fields.globalOn": {
355+
"haskell.plugin.explicit-fields.codeActionsOn": {
356+
"default": true,
357+
"description": "Enables explicit-fields code actions",
358+
"scope": "resource",
359+
"type": "boolean"
360+
},
361+
"haskell.plugin.explicit-fields.inlayHintsOn": {
338362
"default": true,
339-
"description": "Enables explicit-fields plugin",
363+
"description": "Enables explicit-fields inlay hints",
340364
"scope": "resource",
341365
"type": "boolean"
342366
},
@@ -470,6 +494,12 @@
470494
"scope": "resource",
471495
"type": "boolean"
472496
},
497+
"haskell.plugin.importLens.inlayHintsOn": {
498+
"default": true,
499+
"description": "Enables importLens inlay hints",
500+
"scope": "resource",
501+
"type": "boolean"
502+
},
473503
"haskell.plugin.moduleName.globalOn": {
474504
"default": true,
475505
"description": "Enables moduleName plugin",

0 commit comments

Comments
 (0)