Skip to content

Commit c4329cf

Browse files
1.0.0-pre0 Release Preparations (#430)
* 1.0.0-pre0 Release Preps (GitHub only) Signed-off-by: Jens Reinecke <[email protected]> Co-authored-by: Teo Mahnic <[email protected]>
1 parent 8ce8ce1 commit c4329cf

File tree

4 files changed

+20
-8
lines changed

4 files changed

+20
-8
lines changed

CHANGELOG.md

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

3-
## Unreleased
3+
## 1.0.0
44

5+
- Removes `Preview` status from extension.
56
- Fixes [#407](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/issues/407): Warning pops up when using an absolute path in the launch config.
7+
- Fixes [#428](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/issues/428): `PERIPHERALS` view not shown when attaching to a running debug session.
8+
- Implements [#357](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/issues/357): Create extension variant for Windows on Arm (WoA).
9+
- Updates included pyOCD distribution to v0.38.0
10+
- Implements [#313](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/issues/313): Add CoreSight AP specific CSW handling for AHB-AP, AXI-AP, APB-AP.
11+
- Cortex-M: configure AP for cacheable access when cache is present.
12+
- Add support for SW breakpoints when cache is present.
13+
- Add more debug logging information for cbuild-run targets.
14+
- Fixes [#108](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/issues/108): Flash algorithms - Relax memory layout rules and add RAM alignment and minimum stack size checking.
15+
- Fixes [#382](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/issues/382): CMSIS-DAP probe: fix macOS HID read/write.
16+
- Fixes [#387](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/issues/387): cbuild-run: use cbuild-run.yml parent folder as working directory for relative paths.
17+
- Fixes: Flash region builder - remove flash algorithm page size adjustment.
618

719
## 0.5.0
820

TPIP.md

Lines changed: 2 additions & 2 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: 21/07/2025, 09:18:50
3+
Report prepared at: 30/07/2025, 14:00:04
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.37.0 | https://github.com/pyocd/pyOCD | https://github.com/pyocd/pyOCD/blob/v0.37.0/LICENSE |
8+
| pyocd | 0.38.0-pre0 | https://github.com/pyocd/pyOCD | https://github.com/pyocd/pyOCD/blob/v0.38.0-pre0/LICENSE |
99
| yaml | 2.8.0 | https://github.com/eemeli/yaml | https://github.com/eemeli/yaml/blob/main/LICENSE |

docs/third-party-licenses.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
},
99
{
1010
"name": "pyocd",
11-
"version": "0.37.0",
11+
"version": "0.38.0-pre0",
1212
"spdx": "Apache-2.0",
1313
"url": "https://github.com/pyocd/pyOCD",
14-
"license": "https://github.com/pyocd/pyOCD/blob/v0.37.0/LICENSE"
14+
"license": "https://github.com/pyocd/pyOCD/blob/v0.38.0-pre0/LICENSE"
1515
},
1616
{
1717
"name": "yaml",

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
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": "0.5.0",
6-
"preview": true,
5+
"version": "1.0.0-pre0",
6+
"preview": false,
77
"publisher": "Arm",
88
"author": "Jens Reinecke <[email protected]>",
99
"license": "SEE LICENSE IN LICENSE",
@@ -151,7 +151,7 @@
151151
"yargs": "^18.0.0"
152152
},
153153
"cmsis": {
154-
"pyocd": "pyocd/pyOCD@0.37.0",
154+
"pyocd": "pyocd/pyOCD@0.38.0-pre0",
155155
"gdb": "14.3.1"
156156
}
157157
}

0 commit comments

Comments
 (0)