diff --git a/Changelog.md b/Changelog.md index 7fbef3c7..628298e3 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,10 @@ # Changelog for vscode-haskell +## 2.5.0 + +- Add tracking of cabal files + ([#618](https://github.com/haskell/vscode-haskell/pull/618)) by @fendor + ## 2.4.1 - Downgrade vscode-languageclient diff --git a/docs/Release.md b/docs/Release.md index 38e10757..92c196a3 100644 --- a/docs/Release.md +++ b/docs/Release.md @@ -6,6 +6,7 @@ Follow this list for items that must be completed for release of the `vscode-has - Fix vulnerabilities. - [ ] Run `yarn outdated` to find outdated package version, review what needs to be updated. - `yarn upgrade-interactive` and `yarn upgrade-interactive --latest` is helpful here. +- [ ] Run `haskell-language-server vscode-extension-schema` with the latest `haskell-language-server` to check if there have new fields. - [ ] SemVer Compatible Version Bump in `package.json` - 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. - [ ] Update ChangeLog.md. The output of `./GenChangelogs.hs` usually suffices. diff --git a/package.json b/package.json index f428bfde..28297bb7 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "haskell", "displayName": "Haskell", "description": "Haskell language support powered by the Haskell Language Server", - "version": "2.4.1", + "version": "2.5.0", "license": "MIT", "publisher": "haskell", "engines": { @@ -59,7 +59,6 @@ ".cabal" ] }, - { "id": "literate haskell", "aliases": [ @@ -228,6 +227,12 @@ "scope": "resource", "type": "boolean" }, + "haskell.plugin.cabal.completionOn": { + "default": true, + "description": "Enables cabal completions", + "scope": "resource", + "type": "boolean" + }, "haskell.plugin.callHierarchy.globalOn": { "default": true, "description": "Enables callHierarchy plugin",