Skip to content

Prepare pre-release 2.5.0 #940

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions docs/Release.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down Expand Up @@ -59,7 +59,6 @@
".cabal"
]
},

{
"id": "literate haskell",
"aliases": [
Expand Down Expand Up @@ -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",
Expand Down