diff --git a/CHANGELOG.md b/CHANGELOG.md index fa2153da..0ee1d7cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [v2.0.0] +## [v2.0.1] + +* Removed serial from profile elements in activate.ts to remove duplicate + refresh and and send to host menus in serial files. + +## [v2.0.0] - 2026-06-19 ### Changed @@ -296,7 +301,8 @@ Initial publication. * Terminal support * PSL and table item syntax coloring -[Unreleased]: https://github.com/ing-bank/vscode-psl/compare/v2.0.0...HEAD +[Unreleased]: https://github.com/ing-bank/vscode-psl/compare/v2.0.1...HEAD +[v2.0.1]: https://github.com/ing-bank/vscode-psl/compare/vscode-v2.0.0...v2.0.1 [v2.0.0]: https://github.com/ing-bank/vscode-psl/compare/vscode-v1.13.3-rc1...v2.0.0 [v1.13.4]: https://github.com/ing-bank/vscode-psl/compare/vscode-v1.13.3-rc1...v2.0.0 [v1.13.3]: https://github.com/ing-bank/vscode-psl/compare/vscode-v1.13.2-rc0...vscode-v1.13.3-rc1 diff --git a/package.json b/package.json index 6e8ec12d..4f667523 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vscode-psl", "displayName": "vscode-psl", "description": "Profile Scripting Language support", - "version": "2.0.0", + "version": "2.0.1", "preview": false, "publisher": "ing-bank", "type": "module", diff --git a/src/hostCommands/activate.ts b/src/hostCommands/activate.ts index 54a70d9e..df57f672 100644 --- a/src/hostCommands/activate.ts +++ b/src/hostCommands/activate.ts @@ -32,7 +32,6 @@ const PROFILE_ELEMENTS = [ ".QRY", ".RPT", ".SCR", - ".serial", ]; export function activate(context: vscode.ExtensionContext) {