Skip to content

Commit 4a262a5

Browse files
authored
Merge pull request #940 from July541/prepare-pre-release-2.5.0
Prepare pre-release 2.5.0
2 parents c82127a + 03b7072 commit 4a262a5

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

Changelog.md

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

3+
## 2.5.0
4+
5+
- Add tracking of cabal files
6+
([#618](https://github.com/haskell/vscode-haskell/pull/618)) by @fendor
7+
38
## 2.4.1
49

510
- Downgrade vscode-languageclient

docs/Release.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Follow this list for items that must be completed for release of the `vscode-has
66
- Fix vulnerabilities.
77
- [ ] Run `yarn outdated` to find outdated package version, review what needs to be updated.
88
- `yarn upgrade-interactive` and `yarn upgrade-interactive --latest` is helpful here.
9+
- [ ] Run `haskell-language-server vscode-extension-schema` with the latest `haskell-language-server` to check if there have new fields.
910
- [ ] SemVer Compatible Version Bump in `package.json`
1011
- For pre-releases, we follow the version convention at: https://code.visualstudio.com/api/working-with-extensions/publishing-extension#prerelease-extensions. We use `major.EVEN_NUMBER.patch` for release versions and `major.ODD_NUMBER.patch` for pre-release versions. For example: `2.0.*` for release and `2.1.*` for pre-release.
1112
- [ ] Update ChangeLog.md. The output of `./GenChangelogs.hs` usually suffices.

package.json

+7-2
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.4.1",
5+
"version": "2.5.0",
66
"license": "MIT",
77
"publisher": "haskell",
88
"engines": {
@@ -59,7 +59,6 @@
5959
".cabal"
6060
]
6161
},
62-
6362
{
6463
"id": "literate haskell",
6564
"aliases": [
@@ -228,6 +227,12 @@
228227
"scope": "resource",
229228
"type": "boolean"
230229
},
230+
"haskell.plugin.cabal.completionOn": {
231+
"default": true,
232+
"description": "Enables cabal completions",
233+
"scope": "resource",
234+
"type": "boolean"
235+
},
231236
"haskell.plugin.callHierarchy.globalOn": {
232237
"default": true,
233238
"description": "Enables callHierarchy plugin",

0 commit comments

Comments
 (0)