Skip to content

Commit

Permalink
Merge branch 'release/v2.3.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Aug 14, 2021
2 parents 90b1176 + 11d2c71 commit 8296e51
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 13 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "platformio-ide",
"version": "2.3.2",
"version": "2.3.3",
"publisher": "platformio",
"engines": {
"vscode": "^1.44.0"
Expand Down Expand Up @@ -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": [
Expand Down
2 changes: 1 addition & 1 deletion src/installer/manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 8296e51

Please sign in to comment.