From e90a777cfd170e15db87314e5b48ae6ac50b9892 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 26 Jan 2024 21:42:44 +0200 Subject: [PATCH 1/2] Updated the PlatformIO Core Installer Script to 1.2.2 --- CHANGELOG.md | 11 +++++------ package.json | 8 ++++---- scripts/publish.py | 2 +- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 598ffe9..687508a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,13 @@ # Release Notes -## 3.3.2 (2023-12-23) +## 3.3.3 (2024-??-??) -* 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..f249b36 100644 --- a/package.json +++ b/package.json @@ -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"), From f5ccbc87ca7f14ad559d8b67f0450be4db39ae2f Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 26 Jan 2024 21:43:44 +0200 Subject: [PATCH 2/2] Bump version to 3.3.3 --- CHANGELOG.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 687508a..c305979 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Release Notes -## 3.3.3 (2024-??-??) +## 3.3.3 (2024-01-26) * 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) diff --git a/package.json b/package.json index f249b36..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"