Skip to content

Commit d60b17b

Browse files
authored
v1.1.0 Release Preparations (#506)
* version bump to 1.1.0 * include pyocd 0.39.0 * update TPIP files * changelog * fix coverage badge * changelog feedback RobertRostohar * changelog feedback jkrech --------- Signed-off-by: Jens Reinecke <[email protected]>
1 parent c83ce7c commit d60b17b

File tree

5 files changed

+24
-10
lines changed

5 files changed

+24
-10
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,22 @@
11
# Change Log
22

3-
## Unreleased
3+
## 1.1.0
44

5+
- Implements [#443](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/issues/443): Show CPU execution time (from connection start and between breakpoints).
6+
- Fixes [#159](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/issues/159): Documentation updates - GDB sets off assertion when debugging with NUCLEO-F746ZG.
7+
- Fixes [#374](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/issues/374): Documentation updates - Disassembly view interleaved with source code.
58
- Fixes [#439](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/issues/439): Peripheral Inspector receives wrong SVD file path for secondary core of a multi-core connection.
9+
- Updates included pyOCD distribution to v0.39.0
10+
- Set debugger protocol based on information from `*.cbuild-run.yml` file.
11+
- Fixes [#370](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/issues/370):
12+
- Improve error messages for JTAG/SWD protocol errors.
13+
- Improve handling of attaching probe while pyOCD is waiting.
14+
- Fixes [#435](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/issues/435): Increase number of transfer retries after WAIT response.
15+
- Fixes [#461](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/issues/461): Unable to use GD-Link programmer in version 1.0.0. Fixes support for USB HID based probes without serial number.
16+
- Fixes [#472](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/issues/472): Stop pyOCD if `*.cbuild-run.yml` file is missing.
17+
- Fixes [#473](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/issues/473): Show warning when packs required by `*.cbuild-run.yml` file are missing.
18+
- Fixes [#504](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/issues/504): pyOCD should extract file type from `*.cbuild-run.yml` descriptions.
19+
- Fixes semihosting support: Fix read when no data is available.
620

721
## 1.0.0
822

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![Maintainability](https://qlty.sh/badges/2170b449-4b4b-43e8-8bba-18665ed21a08/maintainability.svg)](https://qlty.sh/gh/Open-CMSIS-Pack/projects/vscode-cmsis-debugger)
2-
[![Test Coverage](https://qlty.sh/badges/2170b449-4b4b-43e8-8bba-18665ed21a08/test_coverage.svg)](https://qlty.sh/gh/Open-CMSIS-Pack/projects/vscode-cmsis-debugger)
2+
[![Test Coverage](https://qlty.sh/badges/2170b449-4b4b-43e8-8bba-18665ed21a08/coverage.svg)](https://qlty.sh/gh/Open-CMSIS-Pack/projects/vscode-cmsis-debugger)
33
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/badge)](https://securityscorecards.dev/viewer/?uri=github.com/Open-CMSIS-Pack/vscode-cmsis-debugger)
44

55
# Arm CMSIS Debugger

TPIP.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# TPIP Report for vscode-cmsis-debugger
22

3-
Report prepared at: 30/07/2025, 14:15:50
3+
Report prepared at: 11/09/2025, 14:30:02
44

55
| *Package* | *Version* | *Repository* | *License* |
66
|---|---|---|---|
77
| arm-none-eabi-gdb | 14.3.1 | https://artifacts.tools.arm.com/arm-none-eabi-gdb/14.3.1/ | https://developer.arm.com/GetEula?Id=15d9660a-2059-4985-85e9-c01cdd4b1ba0 |
8-
| pyocd | 0.38.0 | https://github.com/pyocd/pyOCD | https://github.com/pyocd/pyOCD/blob/v0.38.0/LICENSE |
9-
| yaml | 2.8.0 | https://github.com/eemeli/yaml | https://github.com/eemeli/yaml/blob/main/LICENSE |
8+
| pyocd | 0.39.0 | https://github.com/pyocd/pyOCD | https://github.com/pyocd/pyOCD/blob/v0.39.0/LICENSE |
9+
| yaml | 2.8.1 | https://github.com/eemeli/yaml | https://github.com/eemeli/yaml/blob/main/LICENSE |

docs/third-party-licenses.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
},
99
{
1010
"name": "pyocd",
11-
"version": "0.38.0",
11+
"version": "0.39.0",
1212
"spdx": "Apache-2.0",
1313
"url": "https://github.com/pyocd/pyOCD",
14-
"license": "https://github.com/pyocd/pyOCD/blob/v0.38.0/LICENSE"
14+
"license": "https://github.com/pyocd/pyOCD/blob/v0.39.0/LICENSE"
1515
},
1616
{
1717
"name": "yaml",
18-
"version": "2.8.0",
18+
"version": "2.8.1",
1919
"spdx": "ISC",
2020
"url": "https://github.com/eemeli/yaml",
2121
"license": "https://github.com/eemeli/yaml/blob/main/LICENSE"

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-cmsis-debugger",
33
"displayName": "Arm CMSIS Debugger",
44
"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.",
5-
"version": "1.0.0",
5+
"version": "1.1.0",
66
"preview": false,
77
"publisher": "Arm",
88
"author": "Jens Reinecke <[email protected]>",
@@ -182,7 +182,7 @@
182182
"yargs": "^18.0.0"
183183
},
184184
"cmsis": {
185-
"pyocd": "pyocd/pyOCD@0.38.0",
185+
"pyocd": "pyocd/pyOCD@0.39.0",
186186
"gdb": "14.3.1"
187187
}
188188
}

0 commit comments

Comments
 (0)