Skip to content

Commit

Permalink
Merge pull request #940 from July541/prepare-pre-release-2.5.0
Browse files Browse the repository at this point in the history
Prepare pre-release 2.5.0
  • Loading branch information
July541 authored Aug 17, 2023
2 parents c82127a + 03b7072 commit 4a262a5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
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

0 comments on commit 4a262a5

Please sign in to comment.