diff --git a/CHANGELOG.md b/CHANGELOG.md index cc2faab..9257536 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Release Notes +## 2.3.3 (2021-08-14) + +- Updated PlatformIO Core installer to v1.0.3 ([changes](https://github.com/platformio/platformio-core-installer/releases/tag/v1.0.3)): + * Fix a bug with "OSError / WinError" when looking for a compatible Python + * Fixed "UnboundLocalError" + ## 2.3.2 (2021-04-13) - Added a new setting ``platformio-ide.pioHomeServerHttpHost`` to set a custom host for PlatformIO Home (useful for dockerized environments) (issue [#2465](https://github.com/platformio/platformio-vscode-ide/issues/2465)) diff --git a/README.md b/README.md index e52bd15..d3e447d 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,8 @@ ## Features * Cross-platform code builder without external dependencies to a system software: - - 800+ embedded boards - - 35+ development platforms + - 1000+ embedded boards + - 40+ development platforms - 20+ frameworks * [Debugging](http://docs.platformio.org/page/plus/debugging.html) * [Unit Testing](http://docs.platformio.org/page/plus/unit-testing.html) diff --git a/package.json b/package.json index 54ea84b..85e9f2a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "platformio-ide", - "version": "2.3.2", + "version": "2.3.3", "publisher": "platformio", "engines": { "vscode": "^1.44.0" @@ -621,24 +621,24 @@ "vscode:package": "webpack --mode production && vsce package" }, "devDependencies": { - "@babel/core": "~7.13.15", + "@babel/core": "~7.15.0", "@types/node": "~12", "@types/vscode": "~1.44.0", "babel-eslint": "~10.1.0", "babel-loader": "~8.2.2", "babel-plugin-transform-class-properties": "~6.24.1", "babel-preset-env": "~1.7.0", - "eslint": "~7.24.0", - "eslint-import-resolver-webpack": "~0.13.0", - "eslint-plugin-import": "~2.22.1", - "prettier": "~2.2.1", - "vsce": "~1.87.1", - "webpack": "~5.32.0", - "webpack-cli": "~4.6.0" + "eslint": "~7.32.0", + "eslint-import-resolver-webpack": "~0.13.1", + "eslint-plugin-import": "~2.24.0", + "prettier": "~2.3.2", + "vsce": "~1.96.1", + "webpack": "~5.50.0", + "webpack-cli": "~4.7.2" }, "dependencies": { "fs-plus": "~3.1.1", - "platformio-node-helpers": "~9.2.2", + "platformio-node-helpers": "~9.2.3", "platformio-vscode-debug": "~1.3.1" }, "extensionDependencies": [ diff --git a/src/installer/manager.js b/src/installer/manager.js index fac0b7f..05c0cf8 100644 --- a/src/installer/manager.js +++ b/src/installer/manager.js @@ -87,7 +87,7 @@ export default class InstallationManager { }); }); } - progress.report({ message: 'Finish! Please restart VSCode.', increment: 100 }); + progress.report({ message: 'Finished! Please restart VSCode.', increment: 100 }); } destroy() {