diff --git a/CHANGELOG.md b/CHANGELOG.md index 598ffe9..c305979 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,13 @@ # Release Notes -## 3.3.2 (2023-12-23) +## 3.3.3 (2024-01-26) -* Upgraded the integrated Python distribution for Windows users to version 3.11.7, ensuring compatibility and leveraging the latest features and optimizations. +* 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 +* Updated the PlatformIO Core Installer Script to version [1.2.2](https://github.com/platformio/platformio-core-installer/releases/tag/v1.2.2) - Existing Windows users who installed PlatformIO IDE before and wish to transition to the latest Python 3.11 are advised to follow these steps: +## 3.3.2 (2023-12-23) - 1. Close VSCode - 2. Navigate to the `C:\Users\%USERPROFILE%\.platformio` (or `C:\.platformio`) folder and delete the `penv` and `python3` directories - 3. Open VSCode. +* Upgraded the integrated Python distribution for Windows users to version 3.11.7, ensuring compatibility and leveraging the latest features and optimizations. ## 3.3.1 (2023-07-28) diff --git a/package.json b/package.json index 48615f7..1c8408b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "platformio-ide", - "version": "3.3.2", + "version": "3.3.3", "publisher": "platformio", "engines": { "vscode": "^1.65.0" @@ -899,18 +899,18 @@ }, "dependencies": { "fs-plus": "~3.1.1", - "platformio-node-helpers": "~11.1.1", + "platformio-node-helpers": "~11.2.0", "platformio-vscode-debug": "~1.4.1" }, "devDependencies": { "@types/node": "~14", "@types/vscode": "~1.65.0", - "@vscode/vsce": "~2.22.0", + "@vscode/vsce": "~2.23.0", "eslint": "~8.56.0", "eslint-import-resolver-webpack": "~0.13.8", "eslint-plugin-import": "~2.29.1", - "prettier": "~3.1.1", - "webpack": "~5.89.0", + "prettier": "~3.2.4", + "webpack": "~5.90.0", "webpack-cli": "~5.1.4" }, "extensionDependencies": [ diff --git a/scripts/publish.py b/scripts/publish.py index 741db45..906ae48 100644 --- a/scripts/publish.py +++ b/scripts/publish.py @@ -35,7 +35,7 @@ def __init__(self, target, system=None): PLATFORM_LIST = [ PlatformItem("win32-arm64"), - PlatformItem("win32-ia32", "windows_x86"), + # PlatformItem("win32-ia32", "windows_x86"), PlatformItem("win32-x64", "windows_amd64"), PlatformItem("linux-arm64"), PlatformItem("linux-armhf"),