From aaf9d99f75255e37a90d4ed3c6bf10e9eb6a13af Mon Sep 17 00:00:00 2001 From: Eduard Sergeev Date: Wed, 30 Aug 2023 10:35:43 +1000 Subject: [PATCH 1/3] Fix `CHANGELOG` pacing Add missing spaces for proper newline rendering --- CHANGELOG.md | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3970c5c..37cf917 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,12 +8,12 @@ All notable changes to the "Haskutil" extension will be documented in this file. ## [0.11.4] - 2023-08-27 ### Fixed -* `OrganizeExtensionProvider`: false positive of `Extension are unorganised` +* `OrganizeExtensionProvider`: false positive of `Extension are unorganised` Aligned extension were incorrectly detected as being not aligned -* `ImportProvider`: `Organize imports` behaviour on Windows - Fix invalid parsing of imports in file with `\r\n` (Windows) line ending +* `ImportProvider`: `Organize imports` behaviour on Windows + Fix invalid parsing of imports in file with `\r\n` (Windows) line ending As a result applying `Organize imports` would previously lead to corrupted imports -* Fail CI build in case of test failure: +* Fail CI build in case of test failure: Previously build would still be green even if some of the test wer failing ## [0.11.3] - 2023-08-26 @@ -69,8 +69,10 @@ All notable changes to the "Haskutil" extension will be documented in this file. ## [0.10.4] - 2020-09-26 ### Fixed -* Stop putting images into *.vsix package which reduces in ~20 times (oops...) and `README.md` points to Github-hosted files anyway -* Better isolation for tests: set custom `--user-data-dir` so the test would not interfere with the VSCode installed locally +* Stop putting images into *.vsix package + This fix reduces in ~20 times (oops...) and `README.md` points to Github-hosted files anyway +* Better isolation for tests: + Set custom `--user-data-dir` so the test would not interfere with the VSCode installed locally ## [0.10.3] - 2020-09-25 ### Fixed @@ -78,7 +80,9 @@ All notable changes to the "Haskutil" extension will be documented in this file. ## [0.10.2] - 2020-09-22 ### Added -* Github actions build: matrix builds on multiple platforms and publishing to Marketplace on version tag push +* Github actions build: + - Matrix builds on multiple platforms + - Publish to Marketplace on version tag push ### Fixed * Test coverage * CHANGELOG.md warnings From 41c23fb34a609d299e363526ab493b455c555d6e Mon Sep 17 00:00:00 2001 From: Eduard Sergeev Date: Wed, 30 Aug 2023 10:37:16 +1000 Subject: [PATCH 2/3] Fix wording in CI scripts Both in comments and in code --- .github/workflows/branch.yml | 4 ++-- .github/workflows/master.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/branch.yml b/.github/workflows/branch.yml index 7a56d52..70c958c 100644 --- a/.github/workflows/branch.yml +++ b/.github/workflows/branch.yml @@ -20,10 +20,10 @@ jobs: - run: npm install - - name: Run tests + - name: Run npm test uses: smithki/xvfb-action@v1.1.2 with: - run: npm run test + run: npm test - name: Add GHC extension output (on failure) if: failure() diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index c991479..8fed1c5 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -44,7 +44,7 @@ jobs: - run: npm install - - name: Run tests + - name: Run npm test uses: smithki/xvfb-action@v1.1.2 with: run: npm test From 160a9007e9b817a197d6536d3670af4be79140ab Mon Sep 17 00:00:00 2001 From: Eduard Sergeev Date: Wed, 30 Aug 2023 10:44:57 +1000 Subject: [PATCH 3/3] Version `0.12.1` --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 82e0b4c..b70bba9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "haskutil", - "version": "0.12.0", + "version": "0.12.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "haskutil", - "version": "0.12.0", + "version": "0.12.1", "license": "MIT", "devDependencies": { "@istanbuljs/nyc-config-typescript": "1.0.2", diff --git a/package.json b/package.json index 4164abe..57aca0a 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "haskutil", "displayName": "Haskutil", "description": "'QuickFix' actions for Haskell editor", - "version": "0.12.0", + "version": "0.12.1", "publisher": "Edka", "repository": { "url": "https://github.com/EduardSergeev/vscode-haskutil"