Skip to content

Commit d953379

Browse files
authored
Merge pull request #274 from paulober/develop
Patch v4.2.0
2 parents 147757d + 9c5eae7 commit d953379

File tree

9 files changed

+573
-324
lines changed

9 files changed

+573
-324
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,15 @@ All notable changes to the "MicroPico" extension will be documented in this file
1010

1111
---
1212

13+
## [4.2.0] - 2025-01-17
14+
15+
### Changed
16+
17+
- Updated dependencies
18+
- Configure project command has been renamed to `Initialize MicroPico project`
19+
- Fixed #269, Frozen 'Stop' button after running unplugging
20+
- Refined the disconnect behavior
21+
1322
## [4.1.0] - 2024-11-18
1423

1524
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ On most Linux installations the device file of the Pico serial port is owned by
4747

4848
## Getting started
4949

50-
- First of all open a folder and run `> MicroPico > Configure Project` command via `Ctrl+Shift+P` (or the equivalent on your platform) VS Code command palette. This will import stubs for autocompletion and the settings into your project folder. For the autocompletion to work, the extension prompts you (after project configuration) to install recommended extensions mentioned in [\#Requirements](#requirements).
50+
- First of all open a folder and run `> MicroPico > Initialize MicroPico Project` command via `Ctrl+Shift+P` (or the equivalent on your platform) VS Code command palette. This will import stubs for autocompletion and the settings into your project folder. For the autocompletion to work, the extension prompts you (after project configuration) to install recommended extensions mentioned in [\#Requirements](#requirements).
5151

5252
- Have the onboard LED flashing in under 5 minutes:
5353

package-lock.json

Lines changed: 411 additions & 255 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "pico-w-go",
33
"displayName": "MicroPico",
44
"description": "Auto-completion, remote workspace and a REPL console integration for the Raspberry Pi Pico boards running MicroPython firmware.",
5-
"version": "4.1.0",
5+
"version": "4.2.0",
66
"publisher": "paulober",
77
"license": "MPL-2.0",
88
"homepage": "https://github.com/paulober/MicroPico/blob/main/README.md",
@@ -80,7 +80,7 @@
8080
},
8181
{
8282
"command": "micropico.initialise",
83-
"title": "Setup MicroPico project",
83+
"title": "Initialize MicroPico project",
8484
"enablement": "(resourceScheme != pico && isFileSystemResource) || inQuickOpen",
8585
"category": "MicroPico"
8686
},
@@ -648,39 +648,39 @@
648648
"test": "node ./out/test/runTest.js"
649649
},
650650
"devDependencies": {
651-
"@eslint/js": "^9.15.0",
652-
"@rollup/plugin-commonjs": "^28.0.1",
651+
"@eslint/js": "^9.18.0",
652+
"@rollup/plugin-commonjs": "^28.0.2",
653653
"@rollup/plugin-json": "^6.1.0",
654-
"@rollup/plugin-node-resolve": "^15.3.0",
654+
"@rollup/plugin-node-resolve": "^16.0.0",
655655
"@rollup/plugin-terser": "^0.4.4",
656-
"@rollup/plugin-typescript": "^12.1.1",
657-
"@serialport/bindings-cpp": "^12.0.1",
656+
"@rollup/plugin-typescript": "^12.1.2",
657+
"@serialport/bindings-cpp": "^13.0.1",
658658
"@types/eslint": "^9.6.1",
659659
"@types/fs-extra": "^11.0.4",
660-
"@types/lodash": "^4.17.13",
660+
"@types/lodash": "^4.17.14",
661661
"@types/node": "^20.14",
662662
"@types/uuid": "^10.0.0",
663663
"@types/vscode": "^1.92.0",
664664
"@types/which": "^3.0.4",
665665
"@vscode/test-electron": "^2.4.1",
666-
"eslint": "^9.15.0",
667-
"eslint-config-prettier": "^9.1.0",
666+
"eslint": "^9.18.0",
667+
"eslint-config-prettier": "^10.0.1",
668668
"patch-package": "^8.0.0",
669-
"rollup": "^4.27.2",
669+
"rollup": "^4.30.1",
670670
"rollup-plugin-copy": "^3.5.0",
671671
"tslib": "^2.8.1",
672-
"typescript": "^5.6.3",
673-
"typescript-eslint": "^8.14.0"
672+
"typescript": "^5.7.3",
673+
"typescript-eslint": "^8.20.0"
674674
},
675675
"dependencies": {
676676
"@paulober/pico-mpy-com": "^1.0.21",
677677
"@vscode/python-extension": "^1.0.5",
678678
"axios": "^1.7.7",
679-
"fs-extra": "^11.2.0",
679+
"fs-extra": "^11.3.0",
680680
"lodash": "^4.17.21",
681681
"rimraf": "^6.0.1",
682682
"undici": "^6.21.0",
683-
"uuid": "^11.0.3",
683+
"uuid": "^11.0.5",
684684
"which": "^5.0.0"
685685
},
686686
"packageManager": "[email protected]+sha512.d08425c8062f56d43bb8e84315864218af2492eb769e1f1ca40740f44e85bd148969382d651660363942e5909cb7ffcbef7ca0ae963ddc2c57a51243b4da8f56"
File renamed without changes.

0 commit comments

Comments
 (0)