Skip to content
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

Release/2.4.2 #1001

Merged
merged 2 commits into from
Dec 2, 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
13 changes: 13 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@
- Add tracking of cabal files
([#618](https://github.com/haskell/vscode-haskell/pull/618)) by @fendor

## 2.4.2

- Add stan plugin option #1000
([#1000](https://github.com/haskell/vscode-haskell/pull/1000)) by @fendor
- Probe for GHCup binary wrt #962
([#963](https://github.com/haskell/vscode-haskell/pull/963)) by @hasufell
- Bump old hls version and upgrade test runner to macos-latest
([#960](https://github.com/haskell/vscode-haskell/pull/960)) by @July541
- Increase time limitation to make test on Windows more stable
([#959](https://github.com/haskell/vscode-haskell/pull/959)) by @July541
- Update release docs for refreshing CI tokens
([#942](https://github.com/haskell/vscode-haskell/pull/942)) by @fendor

## 2.4.1

- Downgrade vscode-languageclient
Expand Down
14 changes: 2 additions & 12 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.5.0",
"version": "2.4.2",
"license": "MIT",
"publisher": "haskell",
"engines": {
Expand Down Expand Up @@ -34,8 +34,7 @@
},
"activationEvents": [
"onLanguage:haskell",
"onLanguage:literate haskell",
"onLanguage:cabal"
"onLanguage:literate haskell"
],
"main": "./dist/extension",
"contributes": {
Expand All @@ -50,15 +49,6 @@
".hs"
]
},
{
"id": "cabal",
"aliases": [
"Cabal"
],
"extensions": [
".cabal"
]
},
{
"id": "literate haskell",
"aliases": [
Expand Down
1 change: 0 additions & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,6 @@ async function activateServerForFolder(context: ExtensionContext, uri: Uri, fold
documentSelector: [
{ scheme: 'file', language: 'haskell', pattern: pat },
{ scheme: 'file', language: 'literate haskell', pattern: pat },
{ scheme: 'file', language: 'cabal', pattern: pat },
],
synchronize: {
// Synchronize the setting section 'haskell' to the server.
Expand Down