Skip to content

Commit

Permalink
Merge branch 'release/v1.8.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Aug 31, 2019
2 parents fd115f4 + e73c38a commit b3ad6cf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## 1.8.3 (2019-08-31)

- Fixed an issue with incorrect checking of a valid Python 3 interpreter

## 1.8.2 (2019-08-11)

- Show multi-environment tasks when more than one project `env` is declared
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "platformio-ide",
"version": "1.8.2",
"version": "1.8.3",
"publisher": "platformio",
"engines": {
"vscode": "^1.24.0"
Expand Down Expand Up @@ -604,7 +604,7 @@
},
"dependencies": {
"fs-plus": "^3.1.1",
"platformio-node-helpers": "^5.0.3",
"platformio-node-helpers": "^5.0.5",
"platformio-vscode-debug": "^1.2.8"
},
"extensionDependencies": [
Expand Down
2 changes: 1 addition & 1 deletion src/tasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default class TaskManager {
vscode.workspace.getWorkspaceFolder(vscode.Uri.file(this._projectDir)),
projectTask.title,
TaskManager.type,
new vscode.ShellExecution(IS_WINDOWS ? 'platformio.exe' : 'platformio', projectTask.args, {
new vscode.ProcessExecution(IS_WINDOWS ? 'platformio.exe' : 'platformio', projectTask.args, {
cwd: this._projectDir,
env: process.env
}),
Expand Down

0 comments on commit b3ad6cf

Please sign in to comment.