From 5a13412a9ba34aab9a7d37543e6e119401ba74d2 Mon Sep 17 00:00:00 2001 From: jneira Date: Sat, 7 Aug 2021 23:37:42 +0200 Subject: [PATCH 1/2] Bump up version to 1.6.0 --- Changelog.md | 7 ++++++- package-lock.json | 32 ++++++++++++++++++++++++++++++-- package.json | 2 +- 3 files changed, 37 insertions(+), 4 deletions(-) diff --git a/Changelog.md b/Changelog.md index 42e911e1..8656f0ff 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,10 +2,15 @@ - Add tracking of cabal files to work together with the incoming cabal formatter plugin +### 1.6.0 + +- Bump up vscode version to 1.52.0 (#424) by @berberman + - To match the lsp spec version used in haskell-language-version and fix + ### 1.5.1 - Add much more logging in the client side, configured with `haskell.trace.client` -- Fix error handling of `working out project ghc` (See #421) +- Fix error handling of working out project ghc and a bug when the path to the executable contains spaces (See #421) - And dont use a shell to spawn the subprocess in non windows systems - Show the progress as a cancellable notification - Add commands `Start Haskell LSP server` and `Stop Haskell LSP server` diff --git a/package-lock.json b/package-lock.json index 056ec5fa..2fb1701f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "haskell", - "version": "1.5.1", + "version": "1.6.0", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -601,6 +601,16 @@ "dev": true, "optional": true }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, "bluebird": { "version": "3.7.2", "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", @@ -1745,6 +1755,13 @@ "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", "dev": true }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, "fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", @@ -3125,6 +3142,13 @@ "minimatch": "^3.0.4" } }, + "nan": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", + "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==", + "dev": true, + "optional": true + }, "nanomatch": { "version": "1.2.13", "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", @@ -5159,7 +5183,11 @@ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", "dev": true, - "optional": true + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } }, "glob-parent": { "version": "3.1.0", diff --git a/package.json b/package.json index 77bc3c1d..f1897b71 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "haskell", "displayName": "Haskell", "description": "Haskell language support powered by the Haskell Language Server", - "version": "1.5.1", + "version": "1.6.0", "license": "MIT", "publisher": "haskell", "engines": { From 1dfa228ba4616117a95509ffbf90ded9ca5f6317 Mon Sep 17 00:00:00 2001 From: jneira Date: Sun, 8 Aug 2021 00:02:54 +0200 Subject: [PATCH 2/2] Add missing quotes --- Changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 8656f0ff..0251efae 100644 --- a/Changelog.md +++ b/Changelog.md @@ -10,7 +10,7 @@ ### 1.5.1 - Add much more logging in the client side, configured with `haskell.trace.client` -- Fix error handling of working out project ghc and a bug when the path to the executable contains spaces (See #421) +- Fix error handling of `working out project ghc` and a bug when the path to the executable contains spaces (See #421) - And dont use a shell to spawn the subprocess in non windows systems - Show the progress as a cancellable notification - Add commands `Start Haskell LSP server` and `Stop Haskell LSP server`