diff --git a/CHANGELOG.md b/CHANGELOG.md index c8bdfe8f..ae695ef5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Change Log +## 0.2.0 + +- **Important**: This release requires +[CMSIS-Toolbox v2.9.0](https://github.com/Open-CMSIS-Pack/cmsis-toolbox/releases/tag/2.9.0) +to function correctly. Update your workspace's `vcpkg-configuration.json` file accordingly. +- Updates [documentation](https://open-cmsis-pack.github.io/vscode-cmsis-debugger/). +- Implements [#238](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/issues/238): Support +[`*.cbuild-run.yml`](https://open-cmsis-pack.github.io/cmsis-toolbox/YML-CBuild-Format/#file-structure-of-cbuild-runyml) +file changes in CMSIS-Toolbox v2.9.0. +- Updates included pyOCD distribution + - Updates `*.cbuild-run.yml` support to changes in CMSIS-Toolbox 2.9.0. + - Implements [#208](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/issues/208): + `--cbuild-run` target support in pyOCD subcommands. + - Implements [#241](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/issues/241): + Use default values for CMSIS_PACK_ROOT if variable is not explicitly set. + ## 0.1.1 - Fixes [#153](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/issues/153): PATH variable in terminal sometimes diff --git a/package.json b/package.json index 38ced51e..aa3a8626 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vscode-cmsis-debugger", "displayName": "Arm CMSIS Debugger", "description": "Run and debug embedded and IoT projects on Arm Cortex-M single or multi core devices. Connects via pyOCD to CMSIS-DAP or other GDB servers.", - "version": "0.1.1", + "version": "0.2.0", "preview": true, "publisher": "Arm", "author": "Jens Reinecke ", @@ -259,6 +259,6 @@ "yargs": "^17.7.2" }, "cmsis": { - "pyocd": "MatthiasHertel80/pyOCD@0.0.0-standalone-cbuild6" + "pyocd": "MatthiasHertel80/pyOCD@0.0.0-standalone-cbuild8" } }