Skip to content

Commit f798326

Browse files
authored
Merge pull request #312 from paulober/develop
v4.3.4
2 parents c81cc2b + f89e81a commit f798326

File tree

11 files changed

+534
-708
lines changed

11 files changed

+534
-708
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
steps:
2828
- uses: actions/checkout@v5
2929

30-
- name: Setup Node v22.17.0
30+
- name: Setup Node v22.20.0
3131
uses: actions/setup-node@v5
3232
with:
3333
node-version: "22.17.0"
@@ -36,10 +36,10 @@ jobs:
3636
token: ${{ secrets.GITHUB_TOKEN }}
3737
cache: 'npm'
3838

39-
- name: Setup Python v3.12
39+
- name: Setup Python v3.14
4040
uses: actions/setup-python@v5
4141
with:
42-
python-version: '3.12'
42+
python-version: '3.14'
4343

4444
- name: Install NPM Dependencies And Download Stubs
4545
shell: bash

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v5
1919

20-
- name: Setup Node v22.17.0
20+
- name: Setup Node v22.20.0
2121
uses: actions/setup-node@v5
2222
with:
23-
node-version: '22.17.0'
23+
node-version: '22.20.0'
2424
registry-url: "https://npm.pkg.github.com"
2525
scope: "@paulober"
2626
token: ${{ secrets.GITHUB_TOKEN }}
2727

28-
- name: Setup Python v3.12
28+
- name: Setup Python v3.14
2929
uses: actions/setup-python@v5
3030
with:
31-
python-version: '3.12'
31+
python-version: '3.14'
3232

3333
- name: Install NPM dependencies And Download Stubs
3434
shell: bash

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"--extensionDevelopmentPath=${workspaceFolder}"
1414
],
1515
"outFiles": [
16-
"${workspaceFolder}/dist/**/*.js"
16+
"${workspaceFolder}/dist/extension.js"
1717
],
1818
"preLaunchTask": "${defaultBuildTask}"
1919
},

.vscode/tasks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{
77
"type": "npm",
88
"script": "watch",
9-
"problemMatcher": "$tsc-watch",
9+
"problemMatcher": "$ts-webpack-watch",
1010
"isBackground": true,
1111
"presentation": {
1212
"reveal": "never",

CHANGELOG.md

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

1111
---
1212

13+
## [4.3.4] - 2025-11-28
14+
15+
### Changed
16+
- Updated dependencies
17+
- Fix unicode decoding on vREPL
18+
1319
## [4.3.2] - 2025-09-24
1420

1521
### Changed

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pool:
1212
steps:
1313
- task: NodeTool@0
1414
inputs:
15-
versionSpec: '20.9.x'
15+
versionSpec: '22.20.x'
1616
displayName: 'Install Node.js'
1717

1818
- task: Npm@1

0 commit comments

Comments
 (0)