Skip to content

Commit

Permalink
Merge branch 'release/v3.3.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Jan 26, 2024
2 parents b7eddf0 + f5ccbc8 commit 16ef47e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
11 changes: 5 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "platformio-ide",
"version": "3.3.2",
"version": "3.3.3",
"publisher": "platformio",
"engines": {
"vscode": "^1.65.0"
Expand Down Expand Up @@ -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": [
Expand Down
2 changes: 1 addition & 1 deletion scripts/publish.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down

0 comments on commit 16ef47e

Please sign in to comment.