From 7631c4954f822c3574d086d56fa12d02fe12de95 Mon Sep 17 00:00:00 2001 From: Hakan Nilsson Date: Wed, 18 Sep 2024 17:15:37 +0200 Subject: [PATCH] Prepare for release 0.0.44 --- .github/workflows/build.yml | 2 +- .github/workflows/publish.yml | 2 +- CHANGELOG.md | 9 +++++++++ erlang_ls | 2 +- package-lock.json | 4 ++-- package.json | 4 ++-- 6 files changed, 16 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 09a7e0e..16de34e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,7 +33,7 @@ jobs: - name: Package run: vsce package - name: Upload Artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: erlang-ls.vsix path: erlang-ls-*.vsix diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ec1ef35..7e43cbf 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -28,7 +28,7 @@ jobs: - name: Package run: vsce package - name: Upload Artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: erlang-ls.vsix path: erlang-ls-*.vsix diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a9846d..4544d42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ ## Changelog +### 0.0.44 + +Bump OTP version to 24 +Add custom escript runner configuration option + +Server (0.52.0 -> 0.53.0) + +- https://github.com/erlang-ls/erlang_ls/releases/tag/0.52.0 + ### 0.0.43 Server (0.50.0 -> 0.52.0) diff --git a/erlang_ls b/erlang_ls index 908d9e8..d38dc66 160000 --- a/erlang_ls +++ b/erlang_ls @@ -1 +1 @@ -Subproject commit 908d9e8f41a71a0d1e554c0c330a685b2b08e7c6 +Subproject commit d38dc66e9dfce5bce3be203cd9f67b1e25e94b25 diff --git a/package-lock.json b/package-lock.json index e35a857..29db23b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "erlang-ls", - "version": "0.0.43", + "version": "0.0.44", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "erlang-ls", - "version": "0.0.43", + "version": "0.0.44", "hasInstallScript": true, "license": "Apache-2.0", "devDependencies": { diff --git a/package.json b/package.json index 625fa3a..4e58354 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "erlang-ls", "displayName": "Erlang LS", - "version": "0.0.43", + "version": "0.0.44", "publisher": "erlang-ls", "description": "The Visual Studio Code Extension for the Erlang Language Server", "categories": [ @@ -244,6 +244,6 @@ "eslint": "^7.23.0", "mocha": "^9.1.2", "typescript": "^4.2.3", - "vsce": "^2.10.0" + "@vscode/vsce": "^2.10.0" } }