Skip to content

Commit c3c5024

Browse files
committed
Beta release 0.17.5
Signed-off-by: William Vinnicombe <[email protected]>
1 parent acc1c91 commit c3c5024

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
88

99
- Release 1
1010

11+
## [0.17.5] - 2025-02-21
12+
13+
### Added
14+
- Added support for SDK 2.1.1
15+
1116
## [0.17.4] - 2025-02-19
1217

1318
### Fixed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "raspberry-pi-pico",
33
"displayName": "Raspberry Pi Pico",
44
"description": "The official VS Code extension for Raspberry Pi Pico development. It includes several features to simplify project creation and deployment. (Single folder workspaces only)",
5-
"version": "0.17.4",
5+
"version": "0.17.5",
66
"author": "paulober",
77
"publisher": "raspberry-pi",
88
"icon": "./images/extension-icon.png",

src/utils/download.mts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ const TOOLS_RELEASES: { [key: string]: string } = {
7070
"2.0.0": "v2.0.0-5",
7171
// eslint-disable-next-line @typescript-eslint/naming-convention
7272
"2.1.0": "v2.1.0-0",
73+
// eslint-disable-next-line @typescript-eslint/naming-convention
7374
"2.1.1": "v2.1.1-1",
7475
};
7576

@@ -79,6 +80,7 @@ const PICOTOOL_RELEASES: { [key: string]: string } = {
7980
"2.0.0": "v2.0.0-5",
8081
// eslint-disable-next-line @typescript-eslint/naming-convention
8182
"2.1.0": "v2.1.0-0",
83+
// eslint-disable-next-line @typescript-eslint/naming-convention
8284
"2.1.1": "v2.1.1-1",
8385
};
8486

0 commit comments

Comments
 (0)