Skip to content

Commit

Permalink
Release/2.4.2 (#1001)
Browse files Browse the repository at this point in the history
* Revert "Add tracking of cabal files"

This reverts commit 195468f.

* Prepare release 2.4.2
  • Loading branch information
fendor authored Dec 2, 2023
1 parent 8477f0f commit a80cb6c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
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

0 comments on commit a80cb6c

Please sign in to comment.