diff --git a/.github/workflows/create-vsix-from-pr.yml b/.github/workflows/create-vsix-from-pr.yml index 58e869e7..141469c3 100644 --- a/.github/workflows/create-vsix-from-pr.yml +++ b/.github/workflows/create-vsix-from-pr.yml @@ -37,5 +37,5 @@ jobs: issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, - body: 'Hey there! I just built a new version of the vscode extension based on ${{ github.event.pull_request.head.sha }}. You can downloaded the .vsix [here](${{steps.create-vsix.outputs.workflow-url}}) and then follow [these installation instructions](https://github.com/rokucommunity/vscode-brightscript-language#pre-release-versions).' + body: 'Hey there! I just built a new version of the vscode extension based on ${{ github.event.pull_request.head.sha }}. You can downloaded the .vsix [here](${{steps.create-vsix.outputs.workflow-url}}) and then follow [these installation instructions](https://rokucommunity.github.io/vscode-brightscript-language/prerelease-versions.html).' }) diff --git a/CHANGELOG.md b/CHANGELOG.md index f20e0e60..8d91bd29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## [2.32.1](https://github.com/RokuCommunity/vscode-brightscript-language/compare/v2.32.0...v2.32.1) - 2022-06-02 +### Fixed + - allow user-specified RDB port ([#401](https://github.com/rokucommunity/vscode-brightscript-language/pull/401)) + - prevent RDB-related "port already in use" error after the first debug session ([#401](https://github.com/rokucommunity/vscode-brightscript-language/pull/401)) + + + ## [2.32.0](https://github.com/RokuCommunity/vscode-brightscript-language/compare/v2.31.1...v2.32.0) - 2022-05-31 ### Added - new SceneGraph Inspector panel to view/manage all on-device SceneGraph nodes right in vscode. ([#386](https://github.com/rokucommunity/vscode-brightscript-language/pull/386)) diff --git a/package-lock.json b/package-lock.json index 2e09857b..faa0a799 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "brightscript", - "version": "2.32.0", + "version": "2.32.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "brightscript", - "version": "2.32.0", + "version": "2.32.1", "license": "MIT", "dependencies": { "@vscode/extension-telemetry": "^0.4.7", diff --git a/package.json b/package.json index 87bb66c7..1dba228b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "brightscript", "displayName": "BrightScript Language", - "version": "2.32.0", + "version": "2.32.1", "publisher": "RokuCommunity", "description": "Language support for Roku's BrightScript language.", "author": { diff --git a/scripts/create-vsix.js b/scripts/create-vsix.js index 2016fb35..acd8b480 100644 --- a/scripts/create-vsix.js +++ b/scripts/create-vsix.js @@ -18,7 +18,7 @@ function main() { 'vscode-brightscript-language', hasBranch('vscode-brightscript-language', branch) ? branch : 'master' ); - const buildVersion = `9001.0.0-${branch.replace(/[^a-zA-Z_0-9]/g, '-')}.${Date.now()}`; + const buildVersion = `9001.0.0-${branch.replace(/[^a-zA-Z0-9]/g, '-')}.${Date.now()}`; //bump the version for this build changeVersion('vscode-brightscript-language', buildVersion);