Skip to content

Commit e90a777

Browse files
committed
Updated the PlatformIO Core Installer Script to 1.2.2
1 parent f06bd79 commit e90a777

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

CHANGELOG.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
# Release Notes
22

3-
## 3.3.2 (2023-12-23)
3+
## 3.3.3 (2024-??-??)
44

5-
* Upgraded the integrated Python distribution for Windows users to version 3.11.7, ensuring compatibility and leveraging the latest features and optimizations.
5+
* Implemented automatic upgrading of outdated portable Python 3.9 distributions to the latest version, Python 3.11, enhancing the development environment with the latest features and improvements
6+
* Updated the PlatformIO Core Installer Script to version [1.2.2](https://github.com/platformio/platformio-core-installer/releases/tag/v1.2.2)
67

7-
Existing Windows users who installed PlatformIO IDE before and wish to transition to the latest Python 3.11 are advised to follow these steps:
8+
## 3.3.2 (2023-12-23)
89

9-
1. Close VSCode
10-
2. Navigate to the `C:\Users\%USERPROFILE%\.platformio` (or `C:\.platformio`) folder and delete the `penv` and `python3` directories
11-
3. Open VSCode.
10+
* Upgraded the integrated Python distribution for Windows users to version 3.11.7, ensuring compatibility and leveraging the latest features and optimizations.
1211

1312
## 3.3.1 (2023-07-28)
1413

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -899,18 +899,18 @@
899899
},
900900
"dependencies": {
901901
"fs-plus": "~3.1.1",
902-
"platformio-node-helpers": "~11.1.1",
902+
"platformio-node-helpers": "~11.2.0",
903903
"platformio-vscode-debug": "~1.4.1"
904904
},
905905
"devDependencies": {
906906
"@types/node": "~14",
907907
"@types/vscode": "~1.65.0",
908-
"@vscode/vsce": "~2.22.0",
908+
"@vscode/vsce": "~2.23.0",
909909
"eslint": "~8.56.0",
910910
"eslint-import-resolver-webpack": "~0.13.8",
911911
"eslint-plugin-import": "~2.29.1",
912-
"prettier": "~3.1.1",
913-
"webpack": "~5.89.0",
912+
"prettier": "~3.2.4",
913+
"webpack": "~5.90.0",
914914
"webpack-cli": "~5.1.4"
915915
},
916916
"extensionDependencies": [

scripts/publish.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def __init__(self, target, system=None):
3535

3636
PLATFORM_LIST = [
3737
PlatformItem("win32-arm64"),
38-
PlatformItem("win32-ia32", "windows_x86"),
38+
# PlatformItem("win32-ia32", "windows_x86"),
3939
PlatformItem("win32-x64", "windows_amd64"),
4040
PlatformItem("linux-arm64"),
4141
PlatformItem("linux-armhf"),

0 commit comments

Comments
 (0)