Skip to content

Commit a80cb6c

Browse files
authored
Release/2.4.2 (#1001)
* Revert "Add tracking of cabal files" This reverts commit 195468f. * Prepare release 2.4.2
1 parent 8477f0f commit a80cb6c

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

Changelog.md

+13
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@
55
- Add tracking of cabal files
66
([#618](https://github.com/haskell/vscode-haskell/pull/618)) by @fendor
77

8+
## 2.4.2
9+
10+
- Add stan plugin option #1000
11+
([#1000](https://github.com/haskell/vscode-haskell/pull/1000)) by @fendor
12+
- Probe for GHCup binary wrt #962
13+
([#963](https://github.com/haskell/vscode-haskell/pull/963)) by @hasufell
14+
- Bump old hls version and upgrade test runner to macos-latest
15+
([#960](https://github.com/haskell/vscode-haskell/pull/960)) by @July541
16+
- Increase time limitation to make test on Windows more stable
17+
([#959](https://github.com/haskell/vscode-haskell/pull/959)) by @July541
18+
- Update release docs for refreshing CI tokens
19+
([#942](https://github.com/haskell/vscode-haskell/pull/942)) by @fendor
20+
821
## 2.4.1
922

1023
- Downgrade vscode-languageclient

package.json

+2-12
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.5.0",
5+
"version": "2.4.2",
66
"license": "MIT",
77
"publisher": "haskell",
88
"engines": {
@@ -34,8 +34,7 @@
3434
},
3535
"activationEvents": [
3636
"onLanguage:haskell",
37-
"onLanguage:literate haskell",
38-
"onLanguage:cabal"
37+
"onLanguage:literate haskell"
3938
],
4039
"main": "./dist/extension",
4140
"contributes": {
@@ -50,15 +49,6 @@
5049
".hs"
5150
]
5251
},
53-
{
54-
"id": "cabal",
55-
"aliases": [
56-
"Cabal"
57-
],
58-
"extensions": [
59-
".cabal"
60-
]
61-
},
6252
{
6353
"id": "literate haskell",
6454
"aliases": [

src/extension.ts

-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,6 @@ async function activateServerForFolder(context: ExtensionContext, uri: Uri, fold
259259
documentSelector: [
260260
{ scheme: 'file', language: 'haskell', pattern: pat },
261261
{ scheme: 'file', language: 'literate haskell', pattern: pat },
262-
{ scheme: 'file', language: 'cabal', pattern: pat },
263262
],
264263
synchronize: {
265264
// Synchronize the setting section 'haskell' to the server.

0 commit comments

Comments
 (0)